diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-25 03:31:59 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-27 01:33:42 +0800 |
commit | ff756bc94d7129844f8f3492cc07807a78b973bc (patch) | |
tree | a2418dea3d2e5da316321bc93fb6af05b71b0667 /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | d2144b03c7ef6f7189ba289f5df1a445c68f3b68 (diff) | |
download | dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.gz dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.tar.zst dexon-solidity-ff756bc94d7129844f8f3492cc07807a78b973bc.zip |
Make tests more consistent in style
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 8a61907a..8f645170 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -2549,8 +2549,9 @@ BOOST_AUTO_TEST_CASE(event) if (_manually) { bytes32 s = 0x19dacbf83c5de6658e14cbf7bcae5c15eca2eedecf1c66fbca928e4d351bea0f; log3(bytes32(msg.value), s, bytes32(msg.sender), _id); - } else + } else { Deposit(msg.sender, _id, msg.value); + } } } )"; |