File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
HashifyNet.UnitTests/Algorithms/MurmurHash Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public void MurmurHash2Config_Defaults_HaventChanged()
3939 var murmurHash2Config = new MurmurHash2Config ( ) ;
4040
4141 Assert . Equal ( 64 , murmurHash2Config . HashSizeInBits ) ;
42- Assert . Equal ( 0UL , murmurHash2Config . Seed ) ;
42+ Assert . Equal ( 0L , murmurHash2Config . Seed ) ;
4343 }
4444
4545 [ Fact ]
@@ -48,7 +48,7 @@ public void MurmurHash2Config_Clone_Works()
4848 var murmurHash2Config = new MurmurHash2Config ( )
4949 {
5050 HashSizeInBits = 32 ,
51- Seed = 1337UL ,
51+ Seed = 1337L ,
5252 } ;
5353
5454 var murmurHash2ConfigClone = murmurHash2Config . Clone ( ) ;
@@ -59,4 +59,4 @@ public void MurmurHash2Config_Clone_Works()
5959 Assert . Equal ( murmurHash2Config . Seed , murmurHash2ConfigClone . Seed ) ;
6060 }
6161 }
62- }
62+ }
You can’t perform that action at this time.
0 commit comments