Skip to content

Commit

Permalink
Fix failure assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Meldiron committed Jul 29, 2024
1 parent 5e097b4 commit 5bffa50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/VCS/Adapter/GitHubTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public function testGenerateCloneCommandWithTag(): void
$output = '';
$resultCode = null;
\exec($gitCloneCommand, $output, $resultCode);
$this->assertEquals(0, $resultCode);
$this->assertNotEquals(0, $resultCode);

$this->assertFileDoesNotExist('/tmp/clone-tag4/README.md');
}
Expand Down

0 comments on commit 5bffa50

Please sign in to comment.