From bc05c320d3e9f455054e8e41bcca20e858d2c42e Mon Sep 17 00:00:00 2001 From: gladcow Date: Mon, 26 Aug 2019 13:59:18 +0300 Subject: [PATCH] remove double empty lines --- tests/tests/account_history_test.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/tests/account_history_test.cpp b/tests/tests/account_history_test.cpp index aed5c1af..09f3281a 100644 --- a/tests/tests/account_history_test.cpp +++ b/tests/tests/account_history_test.cpp @@ -35,7 +35,6 @@ #include #include - using namespace graphene::app; using namespace graphene::chain; using namespace graphene::chain::test; @@ -51,7 +50,6 @@ BOOST_AUTO_TEST_CASE(get_account_history) { auto dan_acc = create_account("dan"); auto bob_acc = create_account("bob"); - generate_block(); fc::usleep(fc::milliseconds(2000)); @@ -71,7 +69,6 @@ BOOST_AUTO_TEST_CASE(get_account_history) { BOOST_CHECK(histories[0].id.instance() != 0); BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id); - // Limit 2 returns 2 result histories = hist_api.get_account_history(account_id_type(), operation_history_id_type(), 2, operation_history_id_type()); BOOST_CHECK_EQUAL(histories.size(), 2u); @@ -81,8 +78,6 @@ BOOST_AUTO_TEST_CASE(get_account_history) { histories = hist_api.get_account_history(bob_acc.get_id(), operation_history_id_type(), 100, operation_history_id_type()); BOOST_CHECK_EQUAL(histories.size(), 1u); BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id); - - } catch (fc::exception &e) { edump((e.to_detail_string())); throw; @@ -109,4 +104,3 @@ BOOST_AUTO_TEST_CASE(zero_id_object) { } BOOST_AUTO_TEST_SUITE_END() -