Skip to content

Commit

Permalink
Fix expected and actual being reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
jzebedee committed Sep 19, 2023
1 parent 877ba52 commit 0e4f082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/LibDeflate.Tests/ImportTests/CompressionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void AllocAndFreeCompressorTest(int compressionLevel)
var compressor = Imports.Compression.libdeflate_alloc_compressor(compressionLevel);
try
{
Assert.NotEqual(compressor, IntPtr.Zero);
Assert.NotEqual(0, compressor);
}
finally
{
Expand Down

0 comments on commit 0e4f082

Please sign in to comment.