From 2ff0a588e6e7a2e13cddef82751426fee6d08882 Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:15:55 +0000 Subject: [PATCH] chore: revert shallow cloning --- tests/VCS/Adapter/GitHubTest.php | 4 ---- 1 file changed, 4 deletions(-) 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);