Skip to content

Commit 79e90ba

Browse files
committed
filter config values on testSuiteStart
1 parent 77de966 commit 79e90ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tests/integration/framework/Magento/TestFramework/Isolation/DeploymentConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function startTestSuite()
5151
{
5252
if (null === $this->reader) {
5353
$this->reader = Bootstrap::getObjectManager()->get(\Magento\Framework\App\DeploymentConfig\Reader::class);
54-
$this->config = $this->reader->load();
54+
$this->config = $this->filterIgnoredConfigValues($this->reader->load());
5555
}
5656
}
5757

0 commit comments

Comments
 (0)