diff options
author | chriseth <chris@ethereum.org> | 2017-10-11 18:52:14 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-10-18 06:19:36 +0800 |
commit | 58139e8613e64bc5a921478d153ae9a130ca9772 (patch) | |
tree | eb0ec93670b3624358f2bcb49148403fa8c44e92 | |
parent | a3db1fc1976e1b2e67aedecb771c288b6dca6b1c (diff) | |
download | dexon-solidity-58139e8613e64bc5a921478d153ae9a130ca9772.tar.gz dexon-solidity-58139e8613e64bc5a921478d153ae9a130ca9772.tar.zst dexon-solidity-58139e8613e64bc5a921478d153ae9a130ca9772.zip |
Adjust tests.
-rw-r--r-- | test/libsolidity/Assembly.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/Assembly.cpp b/test/libsolidity/Assembly.cpp index 56ac8cf5..358d3c72 100644 --- a/test/libsolidity/Assembly.cpp +++ b/test/libsolidity/Assembly.cpp @@ -119,7 +119,7 @@ BOOST_AUTO_TEST_CASE(location_test) shared_ptr<string const> n = make_shared<string>(""); AssemblyItems items = compileContract(sourceCode); vector<SourceLocation> locations = - vector<SourceLocation>(18, SourceLocation(2, 75, n)) + + vector<SourceLocation>(24, SourceLocation(2, 75, n)) + vector<SourceLocation>(32, SourceLocation(20, 72, n)) + vector<SourceLocation>{SourceLocation(42, 51, n), SourceLocation(65, 67, n)} + vector<SourceLocation>(2, SourceLocation(58, 67, n)) + |