diff options
author | ethdev <marek.kotewicz@gmail.com> | 2014-12-17 18:57:32 +0800 |
---|---|---|
committer | ethdev <marek.kotewicz@gmail.com> | 2014-12-17 18:57:32 +0800 |
commit | 9def93fab40eca6a55200ebec286f8fd0ba584f4 (patch) | |
tree | 936796c76b56f10400a91fa38f119eac62e04b69 | |
parent | c83db9e6db720625242fb10afc63e6276945e6f9 (diff) | |
download | dexon-solidity-9def93fab40eca6a55200ebec286f8fd0ba584f4.tar.gz dexon-solidity-9def93fab40eca6a55200ebec286f8fd0ba584f4.tar.zst dexon-solidity-9def93fab40eca6a55200ebec286f8fd0ba584f4.zip |
windows fix for initializer-list cannot convert to dev::bytes
-rw-r--r-- | solidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidityEndToEndTest.cpp b/solidityEndToEndTest.cpp index ecd3b63a..1ac480da 100644 --- a/solidityEndToEndTest.cpp +++ b/solidityEndToEndTest.cpp @@ -1108,7 +1108,7 @@ BOOST_AUTO_TEST_CASE(constructor_arguments) function getName() returns (string3 ret) { return h.getName(); } })"; compileAndRun(sourceCode, 0, "Main"); - BOOST_REQUIRE(callContractFunction(0) == bytes({0x01})); + BOOST_REQUIRE(callContractFunction(0) == bytes{0x01}); BOOST_REQUIRE(callContractFunction(1) == bytes({'a', 'b', 'c'})); } |