From 0991f2c3c4a8ef7d79244e95e14c10c47f0705fb Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Tue, 28 Nov 2023 13:17:20 -0800 Subject: [PATCH] kill mutants --- tests/phpunit/src/Commands/Auth/AuthLogoutCommandTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/phpunit/src/Commands/Auth/AuthLogoutCommandTest.php b/tests/phpunit/src/Commands/Auth/AuthLogoutCommandTest.php index 8f9467210..75e600656 100644 --- a/tests/phpunit/src/Commands/Auth/AuthLogoutCommandTest.php +++ b/tests/phpunit/src/Commands/Auth/AuthLogoutCommandTest.php @@ -27,6 +27,8 @@ public function testAuthLogoutCommand(): void { $config = new CloudDataStore($this->localMachineHelper, new CloudDataConfig(), $this->cloudConfigFilepath); $this->assertFalse($config->exists('acli_key')); $this->assertEmpty($config->get('keys')); + $this->assertStringContainsString('The active key 17feaf34-5d04-402b-9a67-15d5161d24e1 will be unset.', $output); + $this->assertStringContainsString('Do you want to delete the active Acquia Cloud API credentials (option --delete)? (yes/no) [yes]:', $output); $this->assertStringContainsString('The active Acquia Cloud API credentials were deleted', $output); }