Skip to content

Commit 795db4f

Browse files
author
Stanislav Idolov
authored
ENGCOM-3034: [Forwardport] Fix module uninstall shell command and composer removal w/out regression #18205
2 parents d1a27f4 + 740ec50 commit 795db4f

File tree

2 files changed

+2
-2
lines changed
  • dev/tests/integration/testsuite/Magento/Framework/Composer
  • lib/internal/Magento/Framework/Composer

2 files changed

+2
-2
lines changed

dev/tests/integration/testsuite/Magento/Framework/Composer/RemoveTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function testRemove()
2424
[
2525
'command' => 'remove',
2626
'packages' => ['magento/package-a', 'magento/package-b'],
27-
'--no-update' => true,
27+
'--no-update-with-dependencies' => true,
2828
]
2929
);
3030
$composerAppFactory->expects($this->once())

lib/internal/Magento/Framework/Composer/Remove.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function remove(array $packages)
4646
[
4747
'command' => 'remove',
4848
'packages' => $packages,
49-
'--no-update' => true,
49+
'--no-update-with-dependencies' => true,
5050
]
5151
);
5252
}

0 commit comments

Comments
 (0)