Skip to content

Commit

Permalink
Fix for older versions of Boost without BOOST_TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
RockinRoel committed Mar 11, 2022
1 parent 8687ec6 commit 9fcbb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/XmlUtils.C
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ BOOST_AUTO_TEST_CASE(fixSelfClosingTags_test1)
std::string output;
Wt::rapidxml::print(std::back_inserter(output), doc,
Wt::rapidxml::print_no_indenting);
BOOST_TEST(output == input);
BOOST_CHECK_EQUAL(output, input);
}

0 comments on commit 9fcbb2c

Please sign in to comment.