diff options
author | Gav Wood <i@gavwood.com> | 2014-12-14 04:48:23 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-12-14 04:48:23 +0800 |
commit | bb5e9040b2f35a5624d73b4bf9c2664f786c84c0 (patch) | |
tree | fa526d7b90d4fd47ad8b7236f84945b6714fe45e | |
parent | f7447fc6534f559ea1253ad84f5267b794066368 (diff) | |
download | dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.tar dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.tar.gz dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.tar.bz2 dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.tar.lz dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.tar.xz dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.tar.zst dexon-solidity-bb5e9040b2f35a5624d73b4bf9c2664f786c84c0.zip |
Silly windows fix.
-rw-r--r-- | solidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidityEndToEndTest.cpp b/solidityEndToEndTest.cpp index 2c1885ad..15722abe 100644 --- a/solidityEndToEndTest.cpp +++ b/solidityEndToEndTest.cpp @@ -402,7 +402,7 @@ BOOST_AUTO_TEST_CASE(empty_string_on_stack) " }\n" "}\n"; compileAndRun(sourceCode); - BOOST_CHECK(callContractFunction(0, bytes({0x02})) == bytes({0x00, 0x02, 0x61/*'a'*/, 0x62/*'b'*/, 0x63/*'c'*/, 0x00})); + BOOST_CHECK(callContractFunction(0, bytes(1, 0x02)) == bytes({0x00, 0x02, 0x61/*'a'*/, 0x62/*'b'*/, 0x63/*'c'*/, 0x00})); } BOOST_AUTO_TEST_CASE(state_smoke_test) |