From 9ac52127753f6c64fe947c2c29373ece147c0e1f Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Tue, 14 Nov 2017 18:30:58 +0000 Subject: [PATCH] unit_tests: fix build after wallet2 list/vector change --- tests/unit_tests/output_selection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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