Skip to content

Commit

Permalink
minor whitespace fixes in test
Browse files Browse the repository at this point in the history
  • Loading branch information
dipkakwani committed Jan 14, 2025
1 parent 53dca76 commit 241be55
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Paprika.Tests/Merkle/RlpMemoTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void Set_get_operation()
InsertRandomKeccak(ref memo, children, out var data, workingMemory);

memo.Length.Should().Be(GetExpectedSize(children.SetCount));

var random = new Random(13);

for (byte i = 0; i < NibbleSet.NibbleCount; i++)
Expand Down Expand Up @@ -421,9 +421,8 @@ private static void CompareMemoAndDict(RlpMemo memo, Dictionary<byte, Keccak> da
else
{
memo.TryGetKeccak(child.Key, out var k).Should().BeTrue();
k.SequenceEqual(child.Value.Span).Should().BeTrue();
k.SequenceEqual(child.Value.Span).Should().BeTrue();
}

}

memo.Length.Should().Be(GetExpectedSize(data.Count));
Expand Down

0 comments on commit 241be55

Please sign in to comment.