aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-09-23 20:42:54 +0800
committerchriseth <c@ethdev.com>2015-09-23 20:42:54 +0800
commitefdea76d5eb026777e89b8683413184bf8c5287d (patch)
treed13122099f0ad3e5b65dd263a87f0e653db6e672 /test/libsolidity/SolidityEndToEndTest.cpp
parent028f561dac6aec0692daa8217b0ee1e3a0c5aa72 (diff)
parente32a063a10b41efeffeec451188b2f3466c8b308 (diff)
downloaddexon-solidity-efdea76d5eb026777e89b8683413184bf8c5287d.tar.gz
dexon-solidity-efdea76d5eb026777e89b8683413184bf8c5287d.tar.zst
dexon-solidity-efdea76d5eb026777e89b8683413184bf8c5287d.zip
Merge pull request #85 from chriseth/warnings
Support mulitple errors and warnings.
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp
index 98da1e27..8026f216 100644
--- a/test/libsolidity/SolidityEndToEndTest.cpp
+++ b/test/libsolidity/SolidityEndToEndTest.cpp
@@ -1999,7 +1999,7 @@ BOOST_AUTO_TEST_CASE(single_copy_with_multiple_inheritance)
BOOST_CHECK(callContractFunction("getViaB()") == encodeArgs(23));
}
-BOOST_AUTO_TEST_CASE(explicit_base_cass)
+BOOST_AUTO_TEST_CASE(explicit_base_class)
{
char const* sourceCode = R"(
contract BaseBase { function g() returns (uint r) { return 1; } }