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();