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

Commit

Permalink
Update test_connection.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Mar 31, 2016
1 parent 89d875b commit 42e4478
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/unit_tests/test_connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,10 @@ void TestConnection::checkTimeout()
//when
QVERIFY(connection.connect());

qDebug() << "Wait 1/5"; wait(1000 * 60);
qDebug() << "Wait 2/5"; wait(1000 * 60);
qDebug() << "Wait 3/5"; wait(1000 * 60);
qDebug() << "Wait 4/5"; wait(1000 * 60);
qDebug() << "Wait 5/5"; wait(1000 * 60);
for (int c=0; c < 60; c++) {
qDebug() << "Wait " << (c + 1) << "/60";
wait(1000 * 10);
}

Response actualCommandResult = connection.commandSync("ping");

Expand Down

0 comments on commit 42e4478

Please sign in to comment.