Skip to content

Commit 9eefe13

Browse files
authored
Change 0UL to 0L for XXH Tests
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 6287e57 commit 9eefe13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet.UnitTests/Algorithms/XxHash/XxHash_Implementation_Tests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void XxHash_Implementation_Constructor_ValidInputs_Works()
4646
.Returns(32);
4747

4848
xxHashConfigMock.SetupGet(xhc => xhc.Seed)
49-
.Returns(0UL);
49+
.Returns(0L);
5050

5151
xxHashConfigMock.Setup(xhc => xhc.Clone())
5252
.Returns(() => xxHashConfigMock.Object);
@@ -276,3 +276,4 @@ protected override IXxHash CreateHashFunction(int hashSize) =>
276276

277277
}
278278

279+

0 commit comments

Comments
 (0)