Skip to content

Commit

Permalink
Test pop_front() against deque.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Mar 12, 2024
1 parent fc02048 commit 0724b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/data/collection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
#include "../test.hpp"
#include <array>
#include <list>
#include <deque>
#include <vector>

BOOST_AUTO_TEST_SUITE(collection_tests)
Expand Down Expand Up @@ -191,7 +191,7 @@ BOOST_AUTO_TEST_CASE(collection__pop__multiple__popped_expected)
}

// pop_front
using data_queue = std::list<uint8_t>;
using data_queue = std::deque<uint8_t>;

BOOST_AUTO_TEST_CASE(collection__pop_front__empty__empty_default)
{
Expand Down

0 comments on commit 0724b6d

Please sign in to comment.