Skip to content

Commit 1003d87

Browse files
authored
Remove space and "Instance" access
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 4f35ebc commit 1003d87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

HashifyNet.UnitTests/Algorithms/BernsteinHash/ModifiedBernsteinHash_Implementation_Tests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)