Skip to content

Commit 04fd590

Browse files
committed
Update MarkdownServiceTest.php
1 parent 1825db8 commit 04fd590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/framework/tests/Feature/MarkdownServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function testServiceCanParseMarkdownToHtmlWithPermalinksDependingOnConfig
3535
$this->assertIsString($html);
3636
$this->assertStringContainsString('heading-permalink', $html, 'Permalink should be added to documentation pages by default');
3737
$this->assertSame(
38-
'<h2>Hello World!<a id="hello-world" href="#hello-world" class="heading-permalink" title="Permalink"></a></h2>'."\n", $html
38+
'<h2 id="hello-world">Hello World!<a href="#hello-world" class="heading-permalink" title="Permalink"></a></h2>'."\n", $html
3939
);
4040

4141
$html = (new MarkdownService($markdown))->parse();

0 commit comments

Comments
 (0)