Skip to content

Commit

Permalink
Update BoundedQueueTest.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd authored Oct 31, 2023
1 parent 819b5ec commit a670462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quill/test/BoundedQueueTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ TEST_CASE("read_write_buffer")

TEST_CASE("bounded_queue_integer_overflow")
{
BoundedQueueImpl<uint8_t> buffer{128};
BoundedQueueImpl<uint8_t> buffer{128, false, 128};
size_t const iterations = static_cast<size_t>(std::numeric_limits<uint8_t>::max()) * 8ull;

for (size_t i = 0; i < iterations; ++i)
Expand Down

0 comments on commit a670462

Please sign in to comment.