From 04fd590883963803606c6fc7df0f21866f0ec35e Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Wed, 4 Dec 2024 09:38:56 +0100 Subject: [PATCH] Update MarkdownServiceTest.php --- packages/framework/tests/Feature/MarkdownServiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/tests/Feature/MarkdownServiceTest.php b/packages/framework/tests/Feature/MarkdownServiceTest.php index cd16cbdb4bc..bb30a4e75b1 100644 --- a/packages/framework/tests/Feature/MarkdownServiceTest.php +++ b/packages/framework/tests/Feature/MarkdownServiceTest.php @@ -35,7 +35,7 @@ public function testServiceCanParseMarkdownToHtmlWithPermalinksDependingOnConfig $this->assertIsString($html); $this->assertStringContainsString('heading-permalink', $html, 'Permalink should be added to documentation pages by default'); $this->assertSame( - '

Hello World!

'."\n", $html + '

Hello World!

'."\n", $html ); $html = (new MarkdownService($markdown))->parse();