aboutsummaryrefslogtreecommitdiffstats
path: root/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-03-12 19:25:07 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-03-12 19:53:01 +0800
commit3d0f4b0f228126c6636001ae5f4ec425fac5cb0f (patch)
tree01fd05d064a4318496050a7a1e300cf47f78b2de /SolidityEndToEndTest.cpp
parent0b411d98e9aea631bfbbf10e870800363e8f20dc (diff)
downloaddexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.tar
dexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.tar.gz
dexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.tar.bz2
dexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.tar.lz
dexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.tar.xz
dexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.tar.zst
dexon-solidity-3d0f4b0f228126c6636001ae5f4ec425fac5cb0f.zip
Style fixes and some additional hash to bytes32 renaming
Diffstat (limited to 'SolidityEndToEndTest.cpp')
-rw-r--r--SolidityEndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp
index 1492f03c..5f95709c 100644
--- a/SolidityEndToEndTest.cpp
+++ b/SolidityEndToEndTest.cpp
@@ -519,7 +519,7 @@ BOOST_AUTO_TEST_CASE(strings)
BOOST_CHECK(callContractFunction("fixed()") == encodeArgs(string("abc\0\xff__", 7)));
BOOST_CHECK(callContractFunction("pipeThrough(bytes2,bool)", string("\0\x02", 2), true) == encodeArgs(string("\0\x2", 2), true));
}
-#
+
BOOST_AUTO_TEST_CASE(empty_string_on_stack)
{
char const* sourceCode = "contract test {\n"