Skip to content

Commit f5bdd92

Browse files
committed
Apply fixes from StyleCI
1 parent 7a3caf0 commit f5bdd92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/framework/tests/Unit/Views/FeaturedImageViewTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public function testCaptionSupportsMarkdown()
334334
public function testCaptionWithSimplifiedSchemaSupportsMarkdown()
335335
{
336336
$this->file('_media/markdown.jpg', 'test content');
337-
337+
338338
$image = new FeaturedImage(
339339
'markdown.jpg',
340340
null, // altText
@@ -346,9 +346,9 @@ public function testCaptionWithSimplifiedSchemaSupportsMarkdown()
346346
null, // copyrightText
347347
'Caption with **bold** and *italic* text' // caption with markdown
348348
);
349-
349+
350350
$component = $this->renderComponent($image);
351-
351+
352352
$this->assertStringContainsString('<strong>bold</strong>', $component);
353353
$this->assertStringContainsString('<em>italic</em>', $component);
354354
}

0 commit comments

Comments
 (0)