diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-11-21 14:42:41 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-11-21 14:42:41 +0800 |
commit | 70a1f73047d884f83cf2b706179f0bbc801e34f6 (patch) | |
tree | b10afa860c9d52dfe95e5810151143473372bd7a /TestHelper.cpp | |
parent | dcc0361c7cb6c3560c1dbed1bdeb4b5a8430c0c7 (diff) | |
download | dexon-solidity-70a1f73047d884f83cf2b706179f0bbc801e34f6.tar.gz dexon-solidity-70a1f73047d884f83cf2b706179f0bbc801e34f6.tar.zst dexon-solidity-70a1f73047d884f83cf2b706179f0bbc801e34f6.zip |
style
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 66370ca3..c4128932 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -293,8 +293,8 @@ void checkLog(LogEntries _resultLogs, LogEntries _expectedLogs) for (size_t i = 0; i < _resultLogs.size(); ++i) { - BOOST_CHECK(_resultLogs[i].address == _expectedLogs[i].address); - BOOST_CHECK(_resultLogs[i].topics == _expectedLogs[i].topics); + BOOST_CHECK_EQUAL(_resultLogs[i].address, _expectedLogs[i].address); + BOOST_CHECK_EQUAL(_resultLogs[i].topics, _expectedLogs[i].topics); BOOST_CHECK(_resultLogs[i].data == _expectedLogs[i].data); } } |