diff --git a/tests/unit_tests/output_selection.cpp b/tests/unit_tests/output_selection.cpp index 6ff73b107..ccca0b799 100644 --- a/tests/unit_tests/output_selection.cpp +++ b/tests/unit_tests/output_selection.cpp @@ -76,7 +76,7 @@ TEST(select_outputs, one_out_of_N) tools::wallet2::transfer_container transfers = make_transfers_container(10); transfers[6].m_block_height = 700; std::vector unused_indices({0, 1, 2, 3, 4, 5, 6, 7, 8, 9}); - std::list selected; + std::vector selected; SELECT(2); PICK(6); } @@ -93,7 +93,7 @@ TEST(select_outputs, order) transfers[3].m_block_height = 716; transfers[4].m_block_height = 701; std::vector unused_indices({0, 1, 2, 3, 4}); - std::list selected; + std::vector selected; SELECT(0); PICK(3); // first the one that's far away PICK(2); // then the one that's close