Skip to content

Commit 8ba28bc

Browse files
committed
Merge branch 'dev/kboyarinov/cbq_capacity_fix' of https://github.com/oneapi-src/oneTBB into dev/kboyarinov/cbq_capacity_fix
2 parents 5257d71 + 49f5205 commit 8ba28bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/tbb/test_concurrent_queue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ TEST_CASE("test capacity on modifying operations") {
293293
capacity_type desired_capacity = 64;
294294

295295
q.set_capacity(desired_capacity);
296-
REQUIRE_MESSAGE(q.capacity() == desired_capacity, "Capacity is not set correctly");
296+
REQUIRE_MESSAGE(q.capacity() == desired_capacity, "Capacity is not set correctly");
297297

298298
queue_type q_copy(q);
299299
REQUIRE_MESSAGE(q_copy.capacity() == desired_capacity, "Capacity is not preserved on copying");

0 commit comments

Comments
 (0)