Skip to content

Commit

Permalink
test namespacing controller patch
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Mar 11, 2020
1 parent f296dab commit 26ea953
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/system/Test/FeatureTestCaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function testReturns()
[
'get',
'home',
'Tests\Support\Controllers\Popcorn::index',
'\Tests\Support\Controllers\Popcorn::index',
],
]);
$response = $this->get('home');
Expand All @@ -173,7 +173,7 @@ public function testIgnores()
[
'get',
'home',
'Tests\Support\Controllers\Popcorn::cat',
'\Tests\Support\Controllers\Popcorn::cat',
],
]);
$response = $this->get('home');
Expand All @@ -186,7 +186,7 @@ public function testEchoes()
[
'get',
'home',
'Tests\Support\Controllers\Popcorn::canyon',
'\Tests\Support\Controllers\Popcorn::canyon',
],
]);
ob_start();
Expand Down

0 comments on commit 26ea953

Please sign in to comment.