Browse Source

bug: fix CI on master branch (#6663)

Kuba Werłos 2 years ago
parent
commit
33e56e5381
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Test/AbstractIntegrationTestCase.php

+ 1 - 1
tests/Test/AbstractIntegrationTestCase.php

@@ -261,7 +261,7 @@ abstract class AbstractIntegrationTestCase extends TestCase
                 "Expected changes do not match result for \"%s\" in \"%s\".\nFixers applied:\n%s.",
                 $case->getTitle(),
                 $case->getFileName(),
-                null === $changed ? '[None]' : implode(',', $changed['appliedFixers'])
+                implode(',', $changed['appliedFixers'])
             )
         );