Skip to content

Commit 6de0493

Browse files
committed
Fix style
1 parent 2316390 commit 6de0493

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 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
}
@@ -364,14 +364,14 @@ public function testCaptionOverridesFeaturedImage()
364364

365365
// The caption should be present
366366
$this->assertStringContainsString('This custom caption should override the fluent caption', $component);
367-
367+
368368
// The fluent caption elements should NOT be present
369369
$this->assertStringNotContainsString('Image by', $component);
370370
$this->assertStringNotContainsString('John Doe', $component);
371371
$this->assertStringNotContainsString('License', $component);
372372
$this->assertStringNotContainsString('MIT License', $component);
373373
}
374-
374+
375375
public function testFluentCaptionUsedWhenNoCaptionIsSet()
376376
{
377377
$component = $this->renderComponent([

0 commit comments

Comments
 (0)