From 567c4cd94200caf8c3ea6f4575aaee2786c60378 Mon Sep 17 00:00:00 2001 From: winsvega Date: Thu, 26 Feb 2015 19:02:56 +0300 Subject: [PATCH] Test Helper style changes --- TestHelper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TestHelper.cpp b/TestHelper.cpp index 6c6ac2e5d..ea44111c9 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);