diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-08-02 06:20:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 06:20:28 +0800 |
commit | 9ec3fd1632e34abf6aca9d6d3bd0ac0fcfa34f62 (patch) | |
tree | 4ea6a5b9bce5279e9d4e06c7501bff0034f9a80b /test/libsolidity | |
parent | 0f39ed6a0de880f5923541760389492349e06424 (diff) | |
parent | 90f319615f12b5a025f4cbc07ac28deb1a61899d (diff) | |
download | dexon-solidity-9ec3fd1632e34abf6aca9d6d3bd0ac0fcfa34f62.tar.gz dexon-solidity-9ec3fd1632e34abf6aca9d6d3bd0ac0fcfa34f62.tar.zst dexon-solidity-9ec3fd1632e34abf6aca9d6d3bd0ac0fcfa34f62.zip |
Merge pull request #4646 from ethereum/smt_model_secondary_location
SMT model is sorted and printed as secondary location
Diffstat (limited to 'test/libsolidity')
-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) |