Skip to content

Commit

Permalink
Fixed test for 128-bit FNV1a
Browse files Browse the repository at this point in the history
  • Loading branch information
sakno committed Jan 25, 2024
1 parent 408de88 commit d83e781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DotNext.Tests/IO/Hashing/FNV1aTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private static void HashTest<THash, TParameters>(FNV1a<THash, TParameters> algor
[Theory]
[InlineData(false)]
[InlineData(true)]
public static void Hash128(bool salted) => HashTest(new FNV1a64(salted));
public static void Hash128(bool salted) => HashTest(new FNV1a128(salted));

[Fact]
public static void HashList()
Expand Down

0 comments on commit d83e781

Please sign in to comment.