Skip to content

Commit

Permalink
Expect fail on composer 1 in general
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Oct 17, 2023
1 parent 468cc8b commit 58ebd80
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Integration/RequireTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ public function testEndToEnd()
if (version_compare(phpversion(), "7.3.0", "<")) {
$this->expectException(NotUpdatedException::class);
}
if ((int) getenv('COMPOSER_VERSION') === 1) {
$this->expectException(NotUpdatedException::class);
}
parent::testEndToEnd();
}
}

0 comments on commit 58ebd80

Please sign in to comment.