diff options
author | chriseth <chris@ethereum.org> | 2017-07-12 21:07:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 21:07:20 +0800 |
commit | b7a59652f1f115490bc2cb175c3d684267067958 (patch) | |
tree | 640a00855d16654f4d2b8bd7ae931e09ad1135db /test/libsolidity | |
parent | 106acd9cbb827a39cd9bfd67866dafe0eeeb31de (diff) | |
parent | b615b01449984b21d7615d6daf70455a56e7bdbc (diff) | |
download | dexon-solidity-b7a59652f1f115490bc2cb175c3d684267067958.tar.gz dexon-solidity-b7a59652f1f115490bc2cb175c3d684267067958.tar.zst dexon-solidity-b7a59652f1f115490bc2cb175c3d684267067958.zip |
Merge pull request #2501 from ethereum/undef-macros
Move UndefMacros from libdevcore to libsolidity/parsing
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index c9771fbd..7b130082 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -9622,7 +9622,7 @@ BOOST_AUTO_TEST_CASE(scientific_notation) BOOST_CHECK(callContractFunction("k()") == encodeArgs(u256(-25))); } -BOOST_AUTO_TEST_CASE(interface) +BOOST_AUTO_TEST_CASE(interface_contract) { char const* sourceCode = R"( interface I { |