Skip to content

Commit

Permalink
Fix auth test closing statement (#20123)
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobandeira authored and taylorotwell committed Jul 18, 2017
1 parent 698a635 commit 919eee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/View/Blade/BladeIfAuthStatementsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function testIfStatementsAreCompiled()
$compiler = new BladeCompiler($this->getFiles(), __DIR__);
$string = '@auth("api")
breeze
@endisset';
@endauth';
$expected = '<?php if(auth()->guard("api")->check()): ?>
breeze
<?php endif; ?>';
Expand Down

0 comments on commit 919eee8

Please sign in to comment.