Skip to content

Commit

Permalink
Accomodate bc breaking change.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Sep 10, 2015
1 parent 6f0b724 commit 55e4c66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ BOOST_AUTO_TEST_CASE(node_test__construct_transaction_indexer__does_not_throw)
{
threadpool threads;
indexer index(threads);
threads.stop();
threads.shutdown();
threads.join();
}

Expand All @@ -91,7 +91,7 @@ BOOST_AUTO_TEST_CASE(node_test__construct_getx_responder__does_not_throw)
blockchain.start();
transactions.start();
blockchain.stop();
threads.stop();
threads.shutdown();
threads.join();

// uninitchain(prefix);
Expand All @@ -109,7 +109,7 @@ BOOST_AUTO_TEST_CASE(node_test__construct_poller__does_not_throw)

blockchain.start();
blockchain.stop();
threads.stop();
threads.shutdown();
threads.join();

// uninitchain(prefix);
Expand Down Expand Up @@ -142,7 +142,7 @@ BOOST_AUTO_TEST_CASE(node_test__construct_session__does_not_throw)
session.start(noop_handler);
session.stop(noop_handler);
blockchain.stop();
threads.stop();
threads.shutdown();
threads.join();

// uninitchain(prefix);
Expand Down

0 comments on commit 55e4c66

Please sign in to comment.