Merge pull request #6358 from ethereum/fixLLLTests

Fix LLL tests.
This commit is contained in:
chriseth 2019-03-25 11:49:53 +01:00 committed by GitHub
commit b17daee20e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1017,10 +1017,10 @@ BOOST_AUTO_TEST_CASE(string_literal)
{
char const* sourceCode = R"(
(returnlll
(return \"hello\")))
(return "hello"))
)";
compileAndRun(sourceCode);
BOOST_CHECK(callFallback() == encodeArgs(u256("68656c6c6f000000000000000000000000000000000000000000000000000000")));
BOOST_CHECK(callFallback() == encodeArgs(u256("0x68656c6c6f000000000000000000000000000000000000000000000000000000")));
}
BOOST_AUTO_TEST_SUITE_END()