Skip to content

Commit 07f4cd5

Browse files
committed
wip
1 parent 733db76 commit 07f4cd5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Integration/Console/Middleware/ValidateNamedArgumentsMiddlewareTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ final class ValidateNamedArgumentsMiddlewareTest extends FrameworkIntegrationTes
99
public function test_invalid_parameters_throw_exception(): void
1010
{
1111
$this->console
12-
->call('test:flags --unknown --foo --no-flag --help --force --no-interaction')
12+
->call('fixture:flags --unknown --foo --no-flag --help --force --no-interaction')
1313
->assertError()
1414
->assertContains('unknown')
1515
->assertDoesNotContain('foo')

tests/Integration/Console/RenderConsoleCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function test_render(): void
5555
(new RenderConsoleCommand($this->testConsole))($consoleCommand);
5656

5757
$this->assertSame(
58-
'test description',
58+
'fixture description',
5959
trim($this->consoleOutput->getBufferWithoutFormatting()[0]),
6060
);
6161
}
@@ -76,7 +76,7 @@ public function test_render_arguments(): void
7676
$renderConsoleCommand($consoleCommand);
7777

7878
$this->assertSame(
79-
'test <path> <type {a|b|c}> [fallback=a {a|b|c}] [nullable-enum=null {a|b|c}] [times=1] [--force=false] [optional=null] description',
79+
'fixture <path> <type {a|b|c}> [fallback=a {a|b|c}] [nullable-enum=null {a|b|c}] [times=1] [--force=false] [optional=null] description',
8080
trim($this->consoleOutput->getBufferWithoutFormatting()[0]),
8181
);
8282
}

0 commit comments

Comments
 (0)