diff --git a/tests/maddy/test_maddy_emphasizedparser.cpp b/tests/maddy/test_maddy_emphasizedparser.cpp index c200313..c4cd56c 100644 --- a/tests/maddy/test_maddy_emphasizedparser.cpp +++ b/tests/maddy/test_maddy_emphasizedparser.cpp @@ -12,7 +12,7 @@ TEST(MADDY_EMPHASIZEDPARSER, ItReplacesMarkdownWithEmphasizedHTML) { - std::string text = "some text *bla* text testing *it* out"; + std::string text = "some text _bla_ text testing _it_ out"; std::string expected = "some text bla text testing it out"; auto emphasizedParser = std::make_shared(); @@ -23,7 +23,7 @@ TEST(MADDY_EMPHASIZEDPARSER, ItReplacesMarkdownWithEmphasizedHTML) TEST(MADDY_EMPHASIZEDPARSER, ItDoesNotParseInsideInlineCode) { - std::string text = "some text `*bla*` `/**text*/` testing *it* out"; + std::string text = "some text `*bla*` `/**text*/` testing _it_ out"; std::string expected = "some text `*bla*` `/**text*/` testing it out"; auto emphasizedParser = std::make_shared();