Skip to content

Commit 5c66148

Browse files
committed
refactor(tests): update completion tests to reflect code changes
1 parent 5a245fb commit 5c66148

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/Integration/Console/Commands/CompletionInstallCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function install_with_invalid_shell(): void
4444
$this->console
4545
->withoutPrompting()
4646
->call('completion:install --shell=fish')
47-
->assertSee('Could not determine shell')
47+
->assertSee('Invalid argument `fish` for `shell` argument')
4848
->assertError();
4949
}
5050

tests/Integration/Console/Commands/CompletionShowCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function show_with_invalid_shell(): void
3636
$this->console
3737
->withoutPrompting()
3838
->call('completion:show --shell=fish')
39-
->assertSee('Could not determine shell')
39+
->assertSee('Invalid argument `fish` for `shell` argument')
4040
->assertError();
4141
}
4242
}

tests/Integration/Console/Commands/CompletionUninstallCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function uninstall_with_invalid_shell(): void
3838
$this->console
3939
->withoutPrompting()
4040
->call('completion:uninstall --shell=fish')
41-
->assertSee('Could not determine shell')
41+
->assertSee('Invalid argument `fish` for `shell` argument')
4242
->assertError();
4343
}
4444

0 commit comments

Comments
 (0)