We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 253fa06 commit 74a60f6Copy full SHA for 74a60f6
Core/tests/Utf8Tests.cpp
@@ -194,7 +194,6 @@ TEST_CASE("Utf8 String", "[common][utf8]") {
194
SECTION("conversions from/to numbers") {
195
REQUIRE(gd::String::From(-15) == "-15");
196
REQUIRE(gd::String::From<unsigned int>(15) == "15");
197
- REQUIRE(gd::String::From(15.6f) == "15.6");
198
REQUIRE(gd::String::From(15.6) == "15.6");
199
200
REQUIRE(gd::String("-15").To<int>() == -15);
0 commit comments