aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-04-04 23:59:45 +0800
committerchriseth <chris@ethereum.org>2018-04-12 19:09:38 +0800
commit338a875134f2e41e9a7e254cc3f7d87c7f4d462e (patch)
tree5f9f8eea46b434e8ae0025de651ffaa7a747528c /test
parente133b1a0cd78acebb0db5448ec62e62ae0060fa2 (diff)
downloaddexon-solidity-338a875134f2e41e9a7e254cc3f7d87c7f4d462e.tar.gz
dexon-solidity-338a875134f2e41e9a7e254cc3f7d87c7f4d462e.tar.zst
dexon-solidity-338a875134f2e41e9a7e254cc3f7d87c7f4d462e.zip
Update expectation.
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityCompiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/SolidityCompiler.cpp b/test/libsolidity/SolidityCompiler.cpp
index e87ab603..90540f3e 100644
--- a/test/libsolidity/SolidityCompiler.cpp
+++ b/test/libsolidity/SolidityCompiler.cpp
@@ -47,8 +47,8 @@ BOOST_AUTO_TEST_CASE(does_not_include_creation_time_only_internal_functions)
BOOST_REQUIRE_MESSAGE(m_compiler.compile(), "Compiling contract failed");
bytes const& creationBytecode = m_compiler.object("C").bytecode;
bytes const& runtimeBytecode = m_compiler.runtimeObject("C").bytecode;
- BOOST_CHECK(creationBytecode.size() >= 120);
- BOOST_CHECK(creationBytecode.size() <= 150);
+ BOOST_CHECK(creationBytecode.size() >= 130);
+ BOOST_CHECK(creationBytecode.size() <= 160);
BOOST_CHECK(runtimeBytecode.size() >= 50);
BOOST_CHECK(runtimeBytecode.size() <= 70);
}