File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
HashifyNet.UnitTests/Algorithms/BernsteinHash Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,10 @@ namespace HashifyNet.UnitTests.Algorithms.BernsteinHash
3434{
3535 public class ModifiedBernsteinHash_Implementation_Tests
3636 {
37-
3837 [ Fact ]
3938 public void ModifiedBernsteinHash_Implementation_HashSizeInBits_IsSet ( )
4039 {
41- var bernsteinHash = HashFactory < IModifiedBernsteinHash , IBernsteinConfig > . Instance . Create ( ) ;
40+ var bernsteinHash = HashFactory < IModifiedBernsteinHash , IBernsteinConfig > . Create ( ) ;
4241
4342 Assert . Equal ( 32 , bernsteinHash . Config . HashSizeInBits ) ;
4443 }
@@ -55,8 +54,9 @@ public class IStreamableHashFunction_Tests
5554
5655 protected override IModifiedBernsteinHash CreateHashFunction ( int hashSize )
5756 {
58- return HashFactory < IModifiedBernsteinHash , IBernsteinConfig > . Instance . Create ( ) ;
57+ return HashFactory < IModifiedBernsteinHash , IBernsteinConfig > . Create ( ) ;
5958 }
6059 }
6160 }
62- }
61+
62+ }
You can’t perform that action at this time.
0 commit comments