aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-03-12 00:48:07 +0800
committerchriseth <c@ethdev.com>2016-03-12 00:52:24 +0800
commit1bf87c6c2b90406d8a59aa928a9fe43a169e157a (patch)
tree9cc3e20fde1c8c89afd3ca33a6c4b067c448e4bc /test/libsolidity/SolidityEndToEndTest.cpp
parent9b00290d74790bb7204449bc96a0ac3660581912 (diff)
downloaddexon-solidity-1bf87c6c2b90406d8a59aa928a9fe43a169e157a.tar.gz
dexon-solidity-1bf87c6c2b90406d8a59aa928a9fe43a169e157a.tar.zst
dexon-solidity-1bf87c6c2b90406d8a59aa928a9fe43a169e157a.zip
Set version to 0.3.0
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index 388f5a69..56f07415 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -5903,7 +5903,7 @@ BOOST_AUTO_TEST_CASE(version_stamp_for_libraries)
bytes runtimeCode = compileAndRun(sourceCode, 0, "lib");
BOOST_CHECK(runtimeCode.size() >= 8);
BOOST_CHECK_EQUAL(runtimeCode[0], int(eth::Instruction::PUSH6)); // might change once we switch to 1.x.x
- BOOST_CHECK_EQUAL(runtimeCode[1], 2); // might change once we switch away from x.2.x
+ BOOST_CHECK_EQUAL(runtimeCode[1], 3); // might change once we switch away from x.3.x
BOOST_CHECK_EQUAL(runtimeCode[7], int(eth::Instruction::POP));
}