Skip to content

Commit 10578ff

Browse files
authored
Update test_mpmc_q.cpp
1 parent 1f0513c commit 10578ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_mpmc_q.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ TEST_CASE("dequeue-empty-wait", "[mpmc_blocking_q]")
2929

3030
size_t q_size = 100;
3131
milliseconds wait_ms(250);
32-
milliseconds tolerance_wait(50);
32+
milliseconds tolerance_wait(250);
3333

3434
spdlog::details::mpmc_blocking_queue<int> q(q_size);
3535
int popped_item;
@@ -104,4 +104,4 @@ TEST_CASE("full_queue", "[mpmc_blocking_q]")
104104
int item = -1;
105105
q.dequeue_for(item, milliseconds(0));
106106
REQUIRE(item == 123456);
107-
}
107+
}

0 commit comments

Comments
 (0)