Remove size check as the insertion thread may not have started by the time the check happens

This commit is contained in:
Christian Mazakas 2023-04-13 13:30:56 -07:00
parent 0e5ef25a69
commit 6bf0e93a41

View File

@ -260,7 +260,7 @@ namespace {
boost::span<typename decltype(values)::value_type> s) {
(void)s;
map_type y(x);
BOOST_TEST_GT(y.size(), 0u);
BOOST_TEST_LE(y.size(), values.size());
BOOST_TEST_EQ(y.hash_function(), x.hash_function());
BOOST_TEST_EQ(y.key_eq(), x.key_eq());