diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-08-02 05:27:46 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-08-02 05:27:46 +0800 |
commit | 90f319615f12b5a025f4cbc07ac28deb1a61899d (patch) | |
tree | 10183029223400b87fe314faffa16b1b40010435 /test/libsolidity/SMTChecker.cpp | |
parent | b6a265551335edeff2f4e43f4a249fabba5381d7 (diff) | |
download | dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.gz dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.tar.zst dexon-solidity-90f319615f12b5a025f4cbc07ac28deb1a61899d.zip |
SMT model variables are sorted and printed as secondary source location
Diffstat (limited to 'test/libsolidity/SMTChecker.cpp')
-rw-r--r-- | test/libsolidity/SMTChecker.cpp | 2 |
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) |