From 0025c28d02a0e9b4599220d3c08ca265998ce4db Mon Sep 17 00:00:00 2001 From: Michiel Rook Date: Tue, 26 Jul 2022 11:53:56 +0200 Subject: [PATCH] git-fetch stopped producing output when fetching all remotes --- tests/Phing/Task/Optional/Git/GitFetchTaskTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Phing/Task/Optional/Git/GitFetchTaskTest.php b/tests/Phing/Task/Optional/Git/GitFetchTaskTest.php index 6c221f0666..32f8348533 100644 --- a/tests/Phing/Task/Optional/Git/GitFetchTaskTest.php +++ b/tests/Phing/Task/Optional/Git/GitFetchTaskTest.php @@ -24,7 +24,6 @@ /** * @author Victor Farazdagi - * @requires OSFAMILY Linux * * @internal */ @@ -64,7 +63,7 @@ public function testFetchAllRemotes(): void $repository = PHING_TEST_BASE . '/tmp/git'; $this->executeTarget('fetchAllRemotes'); $this->assertInLogs('git-fetch: branch "' . $repository . '" repository'); - $this->assertInLogs('git-fetch output: Fetching origin'); + $this->assertInLogs('git-fetch output: '); } public function testNoRepositorySpecified(): void