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 MurmurHash3Config_Defaults_HaventChanged()
3939 var murmurHash3Config = new MurmurHash3Config ( ) ;
4040
4141 Assert . Equal ( 32 , murmurHash3Config . HashSizeInBits ) ;
42- Assert . Equal ( 0U , murmurHash3Config . Seed ) ;
42+ Assert . Equal ( 0 , murmurHash3Config . Seed ) ;
4343 }
4444
4545 [ Fact ]
@@ -48,7 +48,7 @@ public void MurmurHash3Config_Clone_Works()
4848 var murmurHash3Config = new MurmurHash3Config ( )
4949 {
5050 HashSizeInBits = 64 ,
51- Seed = 1337U ,
51+ Seed = 1337 ,
5252 } ;
5353
5454 var murmurHash3ConfigClone = murmurHash3Config . Clone ( ) ;
@@ -59,4 +59,4 @@ public void MurmurHash3Config_Clone_Works()
5959 Assert . Equal ( murmurHash3Config . Seed , murmurHash3ConfigClone . Seed ) ;
6060 }
6161 }
62- }
62+ }
You can’t perform that action at this time.
0 commit comments