Skip to content

Commit

Permalink
test: Covert hex code in a unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Mar 27, 2023
1 parent dede477 commit d6d8c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unittests/evm_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ TEST_P(evm, stack_underflow)

TEST_P(evm, add)
{
execute(25, bytecode{"6007600d0160005260206000f3"});
execute(25, add(7, 13) + ret_top());
EXPECT_GAS_USED(EVMC_SUCCESS, 24);
EXPECT_OUTPUT_INT(20);
}
Expand Down

0 comments on commit d6d8c21

Please sign in to comment.