mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fix format issue for test files
This commit is contained in:
parent
5f919d02ab
commit
839b01f77e
@ -356,7 +356,8 @@ BOOST_AUTO_TEST_CASE(valid_opcodes_functional)
|
||||
"{ (SELFDESTRUCT 0) }"
|
||||
};
|
||||
|
||||
for (size_t i = 0; i < opcodes_bytecode.size(); i++) {
|
||||
for (size_t i = 0; i < opcodes_bytecode.size(); i++)
|
||||
{
|
||||
vector<string> errors;
|
||||
bytes code = lll::compileLLL(opcodes_lll[i], dev::test::Options::get().evmVersion(), false, &errors);
|
||||
|
||||
@ -644,7 +645,8 @@ BOOST_AUTO_TEST_CASE(valid_opcodes_asm)
|
||||
"{ (asm SELFDESTRUCT) }"
|
||||
};
|
||||
|
||||
for (size_t i = 0; i < opcodes_bytecode.size(); i++) {
|
||||
for (size_t i = 0; i < opcodes_bytecode.size(); i++)
|
||||
{
|
||||
vector<string> errors;
|
||||
bytes code = lll::compileLLL(opcodes_lll[i], dev::test::Options::get().evmVersion(), false, &errors);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user