diff options
author | winsvega <winsvega@mail.ru> | 2015-02-27 00:02:56 +0800 |
---|---|---|
committer | winsvega <winsvega@mail.ru> | 2015-02-27 00:02:56 +0800 |
commit | 567c4cd94200caf8c3ea6f4575aaee2786c60378 (patch) | |
tree | ea4db1f66c60655acfb70bb4d97d8e2c4159f58c | |
parent | 5d881b555d34a7d4818c9368b6cabb104bd4600b (diff) | |
download | dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.tar dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.tar.gz dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.tar.bz2 dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.tar.lz dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.tar.xz dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.tar.zst dexon-solidity-567c4cd94200caf8c3ea6f4575aaee2786c60378.zip |
Test Helper
style changes
-rw-r--r-- | TestHelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 6c6ac2e5..ea44111c 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -140,9 +140,9 @@ void ImportTest::importState(json_spirit::mObject& _o, State& _state) void ImportTest::importTransaction(json_spirit::mObject& _o) { - if (_o.count("secretKey")> 0) + if (_o.count("secretKey") > 0) { - BOOST_REQUIRE(_o.count("nonce")> 0); + BOOST_REQUIRE(_o.count("nonce") > 0); BOOST_REQUIRE(_o.count("gasPrice") > 0); BOOST_REQUIRE(_o.count("gasLimit") > 0); BOOST_REQUIRE(_o.count("to") > 0); |