1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-07 23:33:51 +00:00

Fix double-to-float conversion warning in tests

This commit is contained in:
Martin Hořeňovský 2017-04-25 17:48:28 +02:00
parent be0fc60c07
commit b245eaa7d1

View File

@ -21,7 +21,7 @@ TEST_CASE( "tuple<float,int>", "[toString][tuple][c++11][.]" )
{
typedef std::tuple<float,int> type;
CHECK( "1.2f" == Catch::toString(float(1.2)) );
CHECK( "{ 1.2f, 0 }" == Catch::toString(type{1.2,0}) );
CHECK( "{ 1.2f, 0 }" == Catch::toString(type{1.2f,0}) );
}
TEST_CASE( "tuple<string,string>", "[toString][tuple][c++11][.]" )