Skip to content

Commit

Permalink
Fixed timeout for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lexus2k committed May 16, 2021
1 parent cb23bed commit d1f963e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittest/fd_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ TEST(FD, error_on_single_I_send)
CHECK_EQUAL(TINY_SUCCESS, result);
}
// wait until last frame arrives
helper1.wait_until_rx_count(2, 300);
helper1.wait_until_rx_count(2, 500);
CHECK_EQUAL(2, helper1.rx_count());
}

Expand All @@ -183,7 +183,7 @@ TEST(FD, error_on_rej)
CHECK_EQUAL(TINY_SUCCESS, result);
}
// wait until last frame arrives
helper1.wait_until_rx_count(2, 250);
helper1.wait_until_rx_count(2, 400);
CHECK_EQUAL(2, helper1.rx_count());
}

Expand Down

0 comments on commit d1f963e

Please sign in to comment.