aboutsummaryrefslogtreecommitdiffstats
path: root/peer.cpp
diff options
context:
space:
mode:
authorsubtly <subtly@users.noreply.github.com>2015-01-26 13:43:53 +0800
committersubtly <subtly@users.noreply.github.com>2015-01-26 13:43:53 +0800
commit29de01b458401615d56a8c9ebbda5e0c7805e9eb (patch)
treefc13edf8c23fe02a02a668b27626e38fecd7c76f /peer.cpp
parente623e8b02089011b7282b3d6289e832a70c664f8 (diff)
downloaddexon-solidity-29de01b458401615d56a8c9ebbda5e0c7805e9eb.tar.gz
dexon-solidity-29de01b458401615d56a8c9ebbda5e0c7805e9eb.tar.zst
dexon-solidity-29de01b458401615d56a8c9ebbda5e0c7805e9eb.zip
add test-require to p2p/host
Diffstat (limited to 'peer.cpp')
-rw-r--r--peer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/peer.cpp b/peer.cpp
index 7c128276..a4b07e0b 100644
--- a/peer.cpp
+++ b/peer.cpp
@@ -44,7 +44,10 @@ BOOST_AUTO_TEST_CASE(host)
host1.addNode(node2, "127.0.0.1", host2prefs.listenPort, host2prefs.listenPort);
- this_thread::sleep_for(chrono::seconds(3));
+ this_thread::sleep_for(chrono::seconds(1));
+
+ BOOST_REQUIRE_EQUAL(host1.peerCount(), 1);
+ BOOST_REQUIRE_EQUAL(host2.peerCount(), host1.peerCount());
}
BOOST_AUTO_TEST_SUITE_END()