From 6035e462d8ce2532b44ae9c80aa63922e64aef3d Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 17 Feb 2021 23:43:35 +0100 Subject: [PATCH] Fix test when on feature branch --- tests/Composer/Test/Repository/PathRepositoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/Repository/PathRepositoryTest.php b/tests/Composer/Test/Repository/PathRepositoryTest.php index 326434d26..03b6fe103 100644 --- a/tests/Composer/Test/Repository/PathRepositoryTest.php +++ b/tests/Composer/Test/Repository/PathRepositoryTest.php @@ -80,7 +80,7 @@ class PathRepositoryTest extends TestCase $packages = $repository->getPackages(); $names = array(); - $this->assertEquals(2, $repository->count()); + $this->assertGreaterThanOrEqual(2, $repository->count()); $package = $packages[0]; $names[] = $package->getName();