Skip to content

Commit

Permalink
Merge pull request #73 from hmlendea/deps
Browse files Browse the repository at this point in the history
Updated the dependencies
  • Loading branch information
hmlendea authored May 17, 2024
2 parents 29cd1e3 + 2495676 commit 11b1f96
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void WhenNormalisingForCK3_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToCK3Charset(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

// Hearts of Iron 4 Cities
Expand Down Expand Up @@ -303,7 +303,7 @@ public void WhenNormalisingForHOI4City_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToHOI4CityCharset(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

[Test]
Expand Down Expand Up @@ -442,7 +442,7 @@ public void WhenNormalisingForWindow1252_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToWindows1252(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

// Imperator Rome
Expand Down Expand Up @@ -582,7 +582,7 @@ public void WhenNormalisingForImperatorRome_ReturnsTheExpectedNormalisedName(
{
string actualResult = nameNormaliser.ToImperatorRomeCharset(name);

Assert.AreEqual(expectedResult, actualResult);
Assert.That(actualResult, Is.EqualTo(expectedResult));
}

[Test]
Expand Down Expand Up @@ -623,7 +623,7 @@ void TestCharsNotOutsideSet(string str, string charset)
charsOutisdeCharset = string.Empty;
}

Assert.AreEqual(string.Empty, charsOutisdeCharset);
Assert.That(charsOutisdeCharset, Is.Empty);
}
}
}
12 changes: 6 additions & 6 deletions MoreCulturalNamesBuilder/MoreCulturalNamesBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="NuciCLI" Version="1.4.2" />
<PackageReference Include="NuciDAL" Version="1.1.1" />
<PackageReference Include="NuciExtensions" Version="2.0.0" />
<PackageReference Include="NuciDAL" Version="2.1.0" />
<PackageReference Include="NuciExtensions" Version="4.0.0" />
</ItemGroup>

</Project>

0 comments on commit 11b1f96

Please sign in to comment.