Skip to content

Commit aba3d92

Browse files
committed
ACPT-1523: Fix Static test failures on application-server
1 parent fbc92c9 commit aba3d92

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dev/tests/integration/testsuite/Magento/Framework/ObjectManager/ResetAfterRequestTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ public function testResetAfterRequestClasses(string $className)
172172
continue; // We can skip _select because we load a fresh new Select after reset
173173
}
174174
if ('_regionModels' == $propertyName
175-
&& is_a($className, \Magento\Customer\Model\Address\AbstractAddress::class, true))
176-
{
175+
&& is_a($className, \Magento\Customer\Model\Address\AbstractAddress::class, true)) {
177176
continue; // AbstractAddress has static property _regionModels, so it would fail this test.
178177
// TODO: Can we convert _regionModels to member variable,
179178
// or move to a dependency injected service class instead?

0 commit comments

Comments
 (0)