aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-08-02 05:27:46 +0800
committerLeonardo Alt <leo@ethereum.org>2018-08-02 05:27:46 +0800
commit90f319615f12b5a025f4cbc07ac28deb1a61899d (patch)
tree10183029223400b87fe314faffa16b1b40010435 /test
parentb6a265551335edeff2f4e43f4a249fabba5381d7 (diff)
downloaddexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar
dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.gz
dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.bz2
dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.lz
dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.xz
dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.zst
dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.zip
SMT model variables are sorted and printed as secondary source location
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SMTChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SMTChecker.cpp b/test/libsolidity/SMTChecker.cpp
index 497ee867..736aa46c 100644
--- a/test/libsolidity/SMTChecker.cpp
+++ b/test/libsolidity/SMTChecker.cpp
@@ -110,7 +110,7 @@ BOOST_AUTO_TEST_CASE(simple_assert)
function f(uint a) public pure { assert(a == 2); }
}
)";
- CHECK_WARNING(text, "Assertion violation happens here for");
+ CHECK_WARNING(text, "Assertion violation happens here");
}
BOOST_AUTO_TEST_CASE(simple_assert_with_require)