diff --git a/tests/phpunit/src/Commands/CodeStudio/CodeStudioWizardCommandTest.php b/tests/phpunit/src/Commands/CodeStudio/CodeStudioWizardCommandTest.php index 535437b34..ca22288e2 100644 --- a/tests/phpunit/src/Commands/CodeStudio/CodeStudioWizardCommandTest.php +++ b/tests/phpunit/src/Commands/CodeStudio/CodeStudioWizardCommandTest.php @@ -67,7 +67,6 @@ public function providerTestCommand(): array { '--key' => $this->key, '--secret' => $this->secret, ], - //'--phpVersion' => $this->phpVersion, ], // Two projects. [ @@ -86,7 +85,6 @@ public function providerTestCommand(): array { '--key' => $this->key, '--secret' => $this->secret, ], - // '--phpVersion' => $this->phpVersion, ], [ // No projects. @@ -107,7 +105,6 @@ public function providerTestCommand(): array { '--key' => $this->key, '--secret' => $this->secret, ], - // '--phpVersion' => $this->phpVersion, ], [ // No projects. @@ -128,7 +125,6 @@ public function providerTestCommand(): array { '--key' => $this->key, '--secret' => $this->secret, ], - // '--phpVersion' => $this->phpVersion, ], [ // No projects. @@ -147,7 +143,6 @@ public function providerTestCommand(): array { '--key' => $this->key, '--secret' => $this->secret, ], - // '--phpVersion' => $this->phpVersion, ], [ // No projects. @@ -165,7 +160,6 @@ public function providerTestCommand(): array { // Do you want to continue? 'y', ], - // '--phpVersion' => $this->phpVersion, // Args [], ], @@ -185,7 +179,6 @@ public function providerTestCommand(): array { // Do you want to continue? 'y', ], - // '--phpVersion' => $this->phpVersion, // Args [], ], @@ -259,7 +252,6 @@ public function testInvalidGitLabCredentials(): void { $this->executeCommand([ '--key' => $this->key, '--secret' => $this->secret, - // '--phpVersion' => $this->phpVersion, ]); } @@ -274,7 +266,6 @@ public function testMissingGitLabCredentials(): void { $this->executeCommand([ '--key' => $this->key, '--secret' => $this->secret, - // '--phpVersion' => $this->phpVersion, ]); } diff --git a/tests/phpunit/src/TestBase.php b/tests/phpunit/src/TestBase.php index 3e913b3ab..e88bdb6a8 100644 --- a/tests/phpunit/src/TestBase.php +++ b/tests/phpunit/src/TestBase.php @@ -86,8 +86,6 @@ abstract class TestBase extends TestCase { protected string $secret = 'X1u\/PIQXtYaoeui.4RJSJpGZjwmWYmfl5AUQkAebYE='; - // protected string $phpVersion = '8.1'; - protected string $dataDir; protected string $cloudConfigFilepath;