Skip to content

Commit d99b428

Browse files
author
Stanislav Idolov
committed
MAGETWO-44712: Incorrect order status is displayed in archive orders grid after using mass action
1 parent 53dfb4f commit d99b428

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ protected static function getObserverClasses($fileNamePattern, $xpath)
9898
$blacklistExceptions = [];
9999
foreach (glob($blacklistFiles) as $fileName) {
100100
$blacklistExceptions = array_merge(
101-
$blacklistExceptions, file($fileName,
102-
FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES
103-
));
101+
$blacklistExceptions,
102+
file($fileName, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES)
103+
);
104104
}
105105
return array_diff(
106106
array_unique($observerClasses),

0 commit comments

Comments
 (0)