Skip to content

Commit

Permalink
Fix make:twig-component fixtures after change
Browse files Browse the repository at this point in the history
  • Loading branch information
smnandre committed Dec 25, 2024
1 parent b4e7dc9 commit dc812ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public function testController()
$this->assertStringContainsString('<div data-controller="live"', $output);
$this->assertStringContainsString('data-live-name-value="', $output);
$this->assertStringContainsString('data-live-url-value=', $output);
$this->assertStringContainsString('<!-- component html -->', $output);
$this->assertStringContainsString('<!-- component HTML -->', $output);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ public function testController()
{
$output = self::getContainer()->get('twig')->createTemplate("<twig:{name} />")->render();

$this->assertSame("<div>\n <!-- component html -->\n</div>\n", $output);
$this->assertSame("<div>\n <!-- component HTML -->\n</div>\n", $output);
}
}

0 comments on commit dc812ac

Please sign in to comment.