Skip to content

Commit ebb6118

Browse files
committed
CS
1 parent 3146845 commit ebb6118

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Maker/MakeTwigComponentTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getTestDetails(): \Generator
2727

2828
$this->assertStringContainsString('src/Twig/Components/Alert.php', $output);
2929
$this->assertStringContainsString('templates/components/Alert.html.twig', $output);
30-
$this->assertStringContainsString("To render the component, use <twig:Alert />.", $output);
30+
$this->assertStringContainsString('To render the component, use <twig:Alert />.', $output);
3131

3232
$runner->copy(
3333
'make-twig-component/tests/it_generates_twig_component.php',
@@ -46,7 +46,7 @@ public function getTestDetails(): \Generator
4646

4747
$this->assertStringContainsString('src/Twig/Components/FormInput.php', $output);
4848
$this->assertStringContainsString('templates/components/FormInput.html.twig', $output);
49-
$this->assertStringContainsString("To render the component, use <twig:FormInput />.", $output);
49+
$this->assertStringContainsString('To render the component, use <twig:FormInput />.', $output);
5050

5151
$runner->copy(
5252
'make-twig-component/tests/it_generates_twig_component.php',
@@ -65,7 +65,7 @@ public function getTestDetails(): \Generator
6565

6666
$this->assertStringContainsString('src/Twig/Components/Alert.php', $output);
6767
$this->assertStringContainsString('templates/components/Alert.html.twig', $output);
68-
$this->assertStringContainsString("To render the component, use <twig:Alert />.", $output);
68+
$this->assertStringContainsString('To render the component, use <twig:Alert />.', $output);
6969

7070
$runner->copy(
7171
'make-twig-component/tests/it_generates_live_component.php',
@@ -84,7 +84,7 @@ public function getTestDetails(): \Generator
8484

8585
$this->assertStringContainsString('src/Twig/Components/FormInput.php', $output);
8686
$this->assertStringContainsString('templates/components/FormInput.html.twig', $output);
87-
$this->assertStringContainsString("To render the component, use <twig:FormInput />.", $output);
87+
$this->assertStringContainsString('To render the component, use <twig:FormInput />.', $output);
8888

8989
$runner->copy(
9090
'make-twig-component/tests/it_generates_live_component.php',

0 commit comments

Comments
 (0)