Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(ci): increase bsu_test timeout
Browse files Browse the repository at this point in the history
for slow nodes server causing sporadic failures
  • Loading branch information
anthonybilinski committed Jun 27, 2019
1 parent a5754ab commit 8190169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/net/bsu_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void TestBootstrapNodesUpdater::testOnline()

updater.requestBootstrapNodes();

spy.wait();
spy.wait(10000); // increase wait time for speradic CI failures with slow nodes server
QCOMPARE(spy.count(), 1); // make sure the signal was emitted exactly one time
QList<DhtServer> result = qvariant_cast<QList<DhtServer>>(spy.at(0).at(0));
QVERIFY(result.size() > 0); // some data should be returned
Expand Down

0 comments on commit 8190169

Please sign in to comment.