Skip to content

Commit 0a0a7c9

Browse files
authored
Change 0UL to 0L for XXH Config Tests
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent c8d97d2 commit 0a0a7c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HashifyNet.UnitTests/Algorithms/XxHash/XxHashConfig_Tests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void XxHashConfig_Defaults_HaventChanged()
3939
var xxHashConfigInstance = new XxHashConfig();
4040

4141
Assert.Equal(32, xxHashConfigInstance.HashSizeInBits);
42-
Assert.Equal(0UL, xxHashConfigInstance.Seed);
42+
Assert.Equal(0L, xxHashConfigInstance.Seed);
4343
}
4444

4545
[Fact]
@@ -48,7 +48,7 @@ public void XxHashConfig_Clone_Works()
4848
var xxHashConfigInstance = new XxHashConfig()
4949
{
5050
HashSizeInBits = 64,
51-
Seed = 1337UL,
51+
Seed = 1337L,
5252
};
5353

5454
var xxHashConfigClone = xxHashConfigInstance.Clone();
@@ -59,4 +59,4 @@ public void XxHashConfig_Clone_Works()
5959
Assert.Equal(xxHashConfigInstance.Seed, xxHashConfigClone.Seed);
6060
}
6161
}
62-
}
62+
}

0 commit comments

Comments
 (0)