Skip to content

Commit

Permalink
Update test_mpmc_q.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Sep 21, 2019
1 parent 1f0513c commit 10578ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_mpmc_q.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ TEST_CASE("dequeue-empty-wait", "[mpmc_blocking_q]")

size_t q_size = 100;
milliseconds wait_ms(250);
milliseconds tolerance_wait(50);
milliseconds tolerance_wait(250);

spdlog::details::mpmc_blocking_queue<int> q(q_size);
int popped_item;
Expand Down Expand Up @@ -104,4 +104,4 @@ TEST_CASE("full_queue", "[mpmc_blocking_q]")
int item = -1;
q.dequeue_for(item, milliseconds(0));
REQUIRE(item == 123456);
}
}

0 comments on commit 10578ff

Please sign in to comment.