Skip to content

Commit f8f0d1c

Browse files
authored
Merge pull request #271 from gitfool/renovate/fluentassertions-8.x
Bump dependency FluentAssertions to v8
2 parents 302c6ca + d028718 commit f8f0d1c

File tree

4 files changed

+14
-20
lines changed

4 files changed

+14
-20
lines changed

Tests/AssemblyInitializers.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[assembly: AssertionEngineInitializer(typeof(AssemblyInitializers), nameof(AssemblyInitializers.AcceptLicense))]
2+
3+
namespace BoardGameGeek.Dungeon;
4+
5+
public static class AssemblyInitializers
6+
{
7+
public static void AcceptLicense() => License.Accepted = true;
8+
}

Tests/GlobalUsings.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
global using System;
22
global using System.Diagnostics.CodeAnalysis;
3+
global using BoardGameGeek.Dungeon;
34
global using BoardGameGeek.Dungeon.Models;
45
global using FluentAssertions;
6+
global using FluentAssertions.Extensibility;
57
global using Microsoft.Extensions.Logging;
68
global using Serilog;
79
global using Serilog.Extensions.Logging;

Tests/Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<ItemGroup>
1414
<PackageReference Include="coverlet.collector" Version="6.0.4" />
1515
<PackageReference Include="FakeItEasy" Version="8.3.0" />
16-
<PackageReference Include="FluentAssertions" Version="6.12.2" />
16+
<PackageReference Include="FluentAssertions" Version="8.2.0" />
1717
<PackageReference Include="JunitXml.TestLogger" Version="6.1.0" />
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
1919
<PackageReference Include="Serilog.Sinks.XUnit" Version="3.0.19" />

Tests/packages.lock.json

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,9 @@
1919
},
2020
"FluentAssertions": {
2121
"type": "Direct",
22-
"requested": "[6.12.2, )",
23-
"resolved": "6.12.2",
24-
"contentHash": "8YE+xJmT8wgzEpFuzJ4S62oFhEL/AKouMz1RWPEMEUhy9H11aRQlGIWcHurH5BEy7tbF6gb0CJrs0wOw/AtDcQ==",
25-
"dependencies": {
26-
"System.Configuration.ConfigurationManager": "4.4.0"
27-
}
22+
"requested": "[8.2.0, )",
23+
"resolved": "8.2.0",
24+
"contentHash": "Gh4jkECcrR0i17ofCVqsiVz2+lxC+p5TYFPCrbZFi7eQQWGEZhvCDwvhycBKX1Kmtbd+H2CW/ugW7wdH9Br9NQ=="
2825
},
2926
"JunitXml.TestLogger": {
3027
"type": "Direct",
@@ -519,14 +516,6 @@
519516
"Spectre.Console": "0.49.1"
520517
}
521518
},
522-
"System.Configuration.ConfigurationManager": {
523-
"type": "Transitive",
524-
"resolved": "4.4.0",
525-
"contentHash": "gWwQv/Ug1qWJmHCmN17nAbxJYmQBM/E94QxKLksvUiiKB1Ld3Sc/eK1lgmbSjDFxkQhVuayI/cGFZhpBSodLrg==",
526-
"dependencies": {
527-
"System.Security.Cryptography.ProtectedData": "4.4.0"
528-
}
529-
},
530519
"System.Diagnostics.EventLog": {
531520
"type": "Transitive",
532521
"resolved": "9.0.3",
@@ -563,11 +552,6 @@
563552
"resolved": "1.6.0",
564553
"contentHash": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ=="
565554
},
566-
"System.Security.Cryptography.ProtectedData": {
567-
"type": "Transitive",
568-
"resolved": "4.4.0",
569-
"contentHash": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog=="
570-
},
571555
"System.Threading.Tasks.Extensions": {
572556
"type": "Transitive",
573557
"resolved": "4.5.4",

0 commit comments

Comments
 (0)