Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabi Melman <gmelman1@gmail.com>2019-09-21 15:49:54 +0300
committerGitHub <noreply@github.com>2019-09-21 15:49:54 +0300
commit10578ff08c276584bcbb0ec5a7486bda4113175e (patch)
tree8942d6ce0dfbc0bed3c037729701b5c14a8a0dbf
parent1f0513cf4e331928a80d7c98994aff777ec5a0f9 (diff)
Update test_mpmc_q.cppv1.4.0
-rw-r--r--tests/test_mpmc_q.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_mpmc_q.cpp b/tests/test_mpmc_q.cpp
index 19a188d8..888240fd 100644
--- a/tests/test_mpmc_q.cpp
+++ b/tests/test_mpmc_q.cpp
@@ -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;
@@ -104,4 +104,4 @@ TEST_CASE("full_queue", "[mpmc_blocking_q]")
int item = -1;
q.dequeue_for(item, milliseconds(0));
REQUIRE(item == 123456);
-} \ No newline at end of file
+}