From d83e781c763444600546a9ce71b76cdca9f170fe Mon Sep 17 00:00:00 2001 From: sakno Date: Thu, 25 Jan 2024 14:52:25 +0200 Subject: [PATCH] Fixed test for 128-bit FNV1a --- src/DotNext.Tests/IO/Hashing/FNV1aTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DotNext.Tests/IO/Hashing/FNV1aTests.cs b/src/DotNext.Tests/IO/Hashing/FNV1aTests.cs index ab9c00c77..d14f9869c 100644 --- a/src/DotNext.Tests/IO/Hashing/FNV1aTests.cs +++ b/src/DotNext.Tests/IO/Hashing/FNV1aTests.cs @@ -37,7 +37,7 @@ private static void HashTest(FNV1a 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()