Skip to content

Commit 8c02641

Browse files
committed
Fix tests
1 parent 781445a commit 8c02641

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444
"illuminate/log": "^11.0",
4545
"dragonmantank/cron-expression": "^3.1",
4646
"nikic/fast-route": "^1.3",
47-
"symfony/console": "^6.1",
48-
"symfony/error-handler": "^6.1",
49-
"symfony/http-kernel": "^6.1",
50-
"symfony/http-foundation": "^6.1",
51-
"symfony/mime": "^6.1",
52-
"symfony/var-dumper": "^6.1",
47+
"symfony/console": "^7.0",
48+
"symfony/error-handler": "^7.0",
49+
"symfony/http-kernel": "^7.0",
50+
"symfony/http-foundation": "^7.0",
51+
"symfony/mime": "^7.0",
52+
"symfony/var-dumper": "^7.0",
5353
"vlucas/phpdotenv": "^5.4.1"
5454
},
5555
"require-dev": {

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public function bootstrapRouter()
169169
*/
170170
public function version()
171171
{
172-
return 'Lumen (11.0.0-dev) (Laravel Components ^11.0)';
172+
return 'Lumen (11.0.0) (Laravel Components ^11.0)';
173173
}
174174

175175
/**

tests/FullApplicationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ public function testBatchesTableCommandIsRegistered()
776776
$app->register(ConsoleServiceProvider::class);
777777
$command = $app->make('command.queue.batches-table');
778778
$this->assertNotNull($command);
779-
$this->assertEquals('queue:batches-table', $command->getName());
779+
$this->assertEquals('make:queue-batches-table', $command->getName());
780780
}
781781

782782
public function testHandlingCommandsTerminatesApplication()

0 commit comments

Comments
 (0)