2
0
mirror of https://github.com/boostorg/leaf.git synced 2026-01-24 18:02:22 +00:00

BOOST_TEST->BOOST_TEST_EQ

This commit is contained in:
Emil Dotchevski
2019-01-25 10:13:23 -08:00
parent 73aabdb466
commit e45cb511c5
34 changed files with 810 additions and 801 deletions

View File

@@ -45,13 +45,13 @@ int main()
},
[ ]( info const & i42 )
{
BOOST_TEST(i42.value==42);
BOOST_TEST_EQ(i42.value, 42);
return 1;
},
[ ]
{
return 2;
} );
BOOST_TEST(r==1);
BOOST_TEST_EQ(r, 1);
return boost::report_errors();
}