From 6e7aec7947ca817e3f6ffdaaefe139216a5e7445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Thu, 25 Oct 2018 11:07:24 -0300 Subject: [PATCH] test_maddy_emphasizedparser: Update tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- tests/maddy/test_maddy_emphasizedparser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();