diff --git a/tests/VCS/Adapter/GitHubTest.php b/tests/VCS/Adapter/GitHubTest.php index a262fc2..5819660 100644 --- a/tests/VCS/Adapter/GitHubTest.php +++ b/tests/VCS/Adapter/GitHubTest.php @@ -245,8 +245,6 @@ public function testGenerateCloneCommand(): void $this->assertNotEmpty($gitCloneCommand); $this->assertStringContainsString('sparse-checkout', $gitCloneCommand); - fwrite(STDOUT, 'Executing command: ' . $gitCloneCommand . PHP_EOL); - $output = ''; $resultCode = null; \exec($gitCloneCommand, $output, $resultCode); @@ -275,8 +273,6 @@ public function testGenerateCloneCommandWithTag(): void $this->assertNotEmpty($gitCloneCommand); $this->assertStringContainsString('sparse-checkout', $gitCloneCommand); - fwrite(STDOUT, 'Executing command: ' . $gitCloneCommand . PHP_EOL); - $output = ''; $resultCode = null; \exec($gitCloneCommand, $output, $resultCode);