Skip to content

Commit

Permalink
Update EncodingTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Feb 14, 2024
1 parent 688edf9 commit 91958eb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/StaticSettingsTests/EncodingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ await Verify(str)
var fileBytes = await File.ReadAllBytesAsync(file);
var expectedBytes = encoding.GetBytes(str);
Assert.Equal(expectedBytes, fileBytes);
File.Delete(file);
}

[Fact]
Expand All @@ -58,6 +59,7 @@ await Verify(str)
.Concat(encoding.GetBytes(str))
.ToArray();
Assert.Equal(expectedBytes, fileBytes);
File.Delete(file);
}
}
#endif

0 comments on commit 91958eb

Please sign in to comment.