diff options
Diffstat (limited to 'tests/test_html_unescape.cpp')
-rw-r--r-- | tests/test_html_unescape.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_html_unescape.cpp b/tests/test_html_unescape.cpp index 0f80ec7..d141921 100644 --- a/tests/test_html_unescape.cpp +++ b/tests/test_html_unescape.cpp @@ -26,11 +26,11 @@ namespace mastodonpp using std::string; -SCENARIO ("mastodonpp::html_unescape()") +SCENARIO("mastodonpp::html_unescape()") { bool exception = false; - WHEN ("html_unescape() is called.") + WHEN("html_unescape() is called.") { string result; try @@ -42,8 +42,8 @@ SCENARIO ("mastodonpp::html_unescape()") exception = true; } - THEN ("No exception is thrown") - AND_THEN("Result is as expected.") + THEN("No exception is thrown") + AND_THEN("Result is as expected.") { REQUIRE_FALSE(exception); REQUIRE(result == "2€ = 2€ = 2€"); |