Skip to content

Commit

Permalink
Merge pull request #624 from ethereum/state-transition-print-key
Browse files Browse the repository at this point in the history
Print storage key in state transition test failures
  • Loading branch information
gumb0 authored Apr 26, 2023
2 parents 1079986 + 0dabb8f commit fcf6b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unittests/state_transition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void state_transition::TearDown()
}
for (const auto& [key, value] : expected_acc.storage)
{
EXPECT_EQ(acc->storage[key].current, value) << "account " << addr;
EXPECT_EQ(acc->storage[key].current, value) << "account " << addr << " key " << key;
}
for (const auto& [key, value] : acc->storage)
{
Expand Down

0 comments on commit fcf6b33

Please sign in to comment.