Skip to content

Commit 380e552

Browse files
committed
Fixed test for query map.
1 parent b17a4f3 commit 380e552

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libs/network/test/uri/url_test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,5 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(xmpp_query_map_test, T, tag_types) {
299299
BOOST_CHECK(boost::equal(queries.begin()->first, key_1));
300300
BOOST_CHECK(boost::equal(queries.begin()->second, value_1));
301301
BOOST_CHECK(boost::equal((++queries.begin())->first, key_2));
302-
//BOOST_CHECK(boost::equal((++queries.begin())->second, value_2));
303-
//BOOST_CHECK_EQUAL((++queries.begin())->second, value_2);
302+
BOOST_CHECK(boost::equal((++queries.begin())->second, value_2));
304303
}

0 commit comments

Comments
 (0)