Fix cmake_install_test/main.cpp

This commit is contained in:
Peter Dimov
2021-10-02 16:57:38 +03:00
parent bb775c071a
commit e15bccc09b

View File

@ -40,5 +40,5 @@ int main()
boost::system::system_error x( bc, "prefix" );
BOOST_TEST_EQ( x.code(), bc );
BOOST_TEST_EQ( std::string( x.what() ), "prefix: " + bc.message() );
BOOST_TEST_EQ( std::string( x.what() ), "prefix: " + bc.what() );
}