1
0
Fork 0

Fixed another test

pull/8850/head
Yanick Witschi 2020-05-07 19:45:52 +02:00 committed by Jordi Boggiano
parent 5a835db24d
commit 5097ed6480
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 1 additions and 0 deletions

View File

@ -129,6 +129,7 @@ class PoolBuilder
// replace means conflict, so if a fixed package replaces a name, no need to load that one, packages would conflict anyways // replace means conflict, so if a fixed package replaces a name, no need to load that one, packages would conflict anyways
foreach ($package->getReplaces() as $link) { foreach ($package->getReplaces() as $link) {
$this->loadedPackages[$link->getTarget()] = $link->getConstraint(); $this->loadedPackages[$link->getTarget()] = $link->getConstraint();
$this->skippedLoad[$link->getTarget()] = $package->getName();
} }
// TODO in how far can we do the above for conflicts? It's more tricky cause conflicts can be limited to // TODO in how far can we do the above for conflicts? It's more tricky cause conflicts can be limited to