diff options
-rw-r--r-- | tests/game/Hyperlinks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/game/Hyperlinks.cpp b/tests/game/Hyperlinks.cpp index f95d5834713..47031adbaba 100644 --- a/tests/game/Hyperlinks.cpp +++ b/tests/game/Hyperlinks.cpp @@ -36,9 +36,9 @@ TEST_CASE("Basic link structure", "[Hyperlinks]") REQUIRE(info.color.g == 0xef); REQUIRE(info.color.b == 0x01); REQUIRE(info.tag == "Tag"); - REQUIRE(info.data.empty()); + REQUIRE(info.data == ""); REQUIRE(info.text == "text"); - REQUIRE(info.tail.empty()); + REQUIRE(info.tail == ""); } SECTION("Link with data") { |