We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cf41ac commit dd9123bCopy full SHA for dd9123b
dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ApplicationTest.php
@@ -159,6 +159,14 @@ public function testInstall(
159
if ($isExceptionExpected) {
160
$this->expectException(DomainException::class);
161
$this->expectExceptionMessage('"command" must be present in post install setup command arrays');
162
+ } else {
163
+ $this->shell
164
+ ->expects($this->at($index + 1))
165
+ ->method('execute')
166
+ ->with(
167
+ PHP_BINARY . ' -f %s cache:disable -vvv --bootstrap=%s',
168
+ [BP . '/bin/magento', $this->getInitParamsQuery($tmpDir)]
169
+ );
170
}
171
172
$subject->install(false);
0 commit comments