Skip to content

Commit e2ed4d8

Browse files
committed
Missing testlogger for ApiTest
Hopefully fixed final test
1 parent 0c4f255 commit e2ed4d8

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Tests/TrinityContinuum.ApiTests/TrinityContinuum.ApiTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
</PackageReference>
29+
<PackageReference Include="XunitXml.TestLogger" Version="6.1.0" />
2930
</ItemGroup>
3031

3132
<ItemGroup>

Tests/TrinityContinuum.Tests/Services/FileProviderServiceTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ public async Task WriteData_Success_Saved_Backup_And_File()
6767
// Assert
6868
_fileSystem.AllFiles.Should()
6969
.HaveCount(3).And
70-
.ContainMatch(@"*\Data\Characters\1.json").And
71-
.ContainMatch(@"*\Data\Characters\1.json-*.bak");
70+
.ContainMatch(@"*Data?Characters?1.json").And
71+
.ContainMatch(@"*Data?Characters?1.json-*.bak");
7272
}
7373

7474
[Fact]

0 commit comments

Comments
 (0)