Skip to content
Snippets Groups Projects
Commit d99b4282 authored by Stanislav Idolov's avatar Stanislav Idolov
Browse files

MAGETWO-44712: Incorrect order status is displayed in archive orders grid after using mass action

parent 53dfb4f8
Branches
No related merge requests found
......@@ -98,9 +98,9 @@ class ObserverImplementationTest extends \PHPUnit_Framework_TestCase
$blacklistExceptions = [];
foreach (glob($blacklistFiles) as $fileName) {
$blacklistExceptions = array_merge(
$blacklistExceptions, file($fileName,
FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES
));
$blacklistExceptions,
file($fileName, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES)
);
}
return array_diff(
array_unique($observerClasses),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment