Skip to content

Commit c910166

Browse files
authored
Fix namesapce in test (#40395)
1 parent c0a0086 commit c910166

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Testing/Console/RouteListCommandTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Testing;
3+
namespace Illuminate\Tests\Testing\Console;
44

55
use Illuminate\Contracts\Routing\Registrar;
66
use Illuminate\Foundation\Auth\User;
@@ -51,8 +51,8 @@ public function testDisplayRoutesForCli()
5151
->assertSuccessful()
5252
->expectsOutput('')
5353
->expectsOutput(' GET|HEAD closure ............................................... ')
54-
->expectsOutput(' POST controller-invokable Illuminate\Tests\Testing\FooContr')
55-
->expectsOutput(' GET|HEAD controller-method/{user} Illuminate\Tests\Testing\FooC')
54+
->expectsOutput(' POST controller-invokable Illuminate\Tests\Testing\Console\')
55+
->expectsOutput(' GET|HEAD controller-method/{user} Illuminate\Tests\Testing\Cons')
5656
->expectsOutput(' GET|HEAD {account}.example.com/user/{id} ............. user.show')
5757
->expectsOutput('');
5858
}
@@ -75,8 +75,8 @@ public function testDisplayRoutesForCliInVerboseMode()
7575
->assertSuccessful()
7676
->expectsOutput('')
7777
->expectsOutput(' GET|HEAD closure ............................................... ')
78-
->expectsOutput(' POST controller-invokable Illuminate\\Tests\\Testing\\FooController')
79-
->expectsOutput(' GET|HEAD controller-method/{user} Illuminate\\Tests\\Testing\\FooController@show')
78+
->expectsOutput(' POST controller-invokable Illuminate\\Tests\\Testing\\Console\\FooController')
79+
->expectsOutput(' GET|HEAD controller-method/{user} Illuminate\\Tests\\Testing\\Console\\FooController@show')
8080
->expectsOutput(' GET|HEAD {account}.example.com/user/{id} ............. user.show')
8181
->expectsOutput(' ⇂ web')
8282
->expectsOutput('');

0 commit comments

Comments
 (0)