diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php
index baa6ef69cb22a8aa9f1ebbe291ef982ebcaf3ea5..6c4bc5f52c0c06b08f44f2a70554fd3d11c9bca7 100644
--- a/dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php
+++ b/dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php
@@ -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),