Skip to content

Commit 1825cd1

Browse files
authored
Remove unnecessary padding in the function body
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent d4aeb5d commit 1825cd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HashifyNet.UnitTests/Core/IHashFunction_TestBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public void IHashFunction_ComputeHash_ByteArray_MatchesKnownValues()
4646
var hashResults = ComputeHash(hf, knownValue.TestValue);
4747

4848
IHashConfig<CName> config = hf.Config;
49-
5049
Assert.Equal(
5150
new HashValue(knownValue.ExpectedValue.Take((config.HashSizeInBits + 7) / 8), config.HashSizeInBits),
5251
hashResults);
@@ -111,4 +110,5 @@ private static byte[] ToBytes(ulong value, int bitLength)
111110
return valueBytes;
112111
}
113112
}
114-
}
113+
114+
}

0 commit comments

Comments
 (0)