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); }