Skip to content

Commit 74a60f6

Browse files
authored
Remove a failing test on float printing since we only use double (#8181)
1 parent 253fa06 commit 74a60f6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Core/tests/Utf8Tests.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ TEST_CASE("Utf8 String", "[common][utf8]") {
194194
SECTION("conversions from/to numbers") {
195195
REQUIRE(gd::String::From(-15) == "-15");
196196
REQUIRE(gd::String::From<unsigned int>(15) == "15");
197-
REQUIRE(gd::String::From(15.6f) == "15.6");
198197
REQUIRE(gd::String::From(15.6) == "15.6");
199198

200199
REQUIRE(gd::String("-15").To<int>() == -15);

0 commit comments

Comments
 (0)