1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00
This commit is contained in:
Jordi Boggiano 2020-05-26 19:55:40 +02:00
parent 863e7076ba
commit b72ac2d01a
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC
2 changed files with 5 additions and 5 deletions

View file

@ -25,7 +25,7 @@ use Composer\Repository\InstalledArrayRepository;
use Composer\Repository\RepositorySet;
use Composer\Test\TestCase;
use Composer\Semver\Constraint\MultiConstraint;
use Composer\Semver\Constraint\MatchNoneConstraint;
use Composer\Semver\Constraint\MatchAllConstraint;
class SolverTest extends TestCase
{
@ -379,7 +379,7 @@ class SolverTest extends TestCase
{
$this->repoLocked->addPackage($packageA = $this->getPackage('A', '1.0'));
$this->repo->addPackage($packageB = $this->getPackage('B', '1.0'));
$packageB->setReplaces(array('a' => new Link('B', 'A', new MatchNoneConstraint())));
$packageB->setReplaces(array('a' => new Link('B', 'A', new MatchAllConstraint())));
$this->reposComplete();