Skip to content

Commit

Permalink
Remove other
Browse files Browse the repository at this point in the history
  • Loading branch information
benaadams committed Dec 5, 2024
1 parent f7f960a commit d8ba41b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Nethermind/Ethereum.Trie.Test/TrieTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ private static IEnumerable<TrieTest> LoadTests()
{
return TestLoader.LoadFromFile<Dictionary<string, TrieTestArraysJson>, TrieTest>(
"trietest.json",
dwj => dwj.Select(Convert));
dwj => dwj.Select(Convert))
// Remove branch value tests
.Where(t => t.Input.All(kvp => kvp.Key.Length == 32));
}

private static IEnumerable<TrieTest> LoadSecureTests()
Expand Down

0 comments on commit d8ba41b

Please sign in to comment.