Skip to content

Commit

Permalink
adjusting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Mar 13, 2024
1 parent 8b60704 commit cb6c4be
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,22 +299,22 @@ private function getExamples(): array
[
'label' => 'lower',
'source' => '{{ "abc" | lower }}',
'expected' => '<?= strtolower(\'abc\') ?>',
'expected' => '<?= $this->helper->lower(\'abc\') ?>',
],
[
'label' => 'lowercase',
'source' => '{{ "abc" | lowercase }}',
'expected' => '<?= strtolower(\'abc\') ?>',
'expected' => '<?= $this->helper->lower(\'abc\') ?>',
],
[
'label' => 'upper',
'source' => '{{ "abc" | upper }}',
'expected' => '<?= strtoupper(\'abc\') ?>',
'expected' => '<?= $this->helper->upper(\'abc\') ?>',
],
[
'label' => 'uppercase',
'source' => '{{ "abc" | uppercase }}',
'expected' => '<?= strtoupper(\'abc\') ?>',
'expected' => '<?= $this->helper->upper(\'abc\') ?>',
],
[
'label' => 'capitalize',
Expand Down

0 comments on commit cb6c4be

Please sign in to comment.