Test Failed
Push — master ( f043ce...f1785b )
by Antonio Carlos
04:03
created
tests/PhpUnit/Service/ServiceTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
     public function assertCheckedResources($resources)
223 223
     {
224
-        $healthCount = $resources->reduce(function ($carry, $resource) {
224
+        $healthCount = $resources->reduce(function($carry, $resource) {
225 225
             return $carry + ($resource->isHealthy() ? 1 : 0);
226 226
         }, 0);
227 227
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
             $healthCount
231 231
         );
232 232
 
233
-        $failing = $resources->filter(function ($resource) {
233
+        $failing = $resources->filter(function($resource) {
234 234
             return $resource->isHealthy();
235 235
         });
236 236
 
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     {
258 258
         $this->assertEquals(
259 259
             collect(static::ALL_RESOURCES)
260
-                ->map(function ($value) {
260
+                ->map(function($value) {
261 261
                     return strtolower($value);
262 262
                 })
263 263
                 ->sort()
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
                 ->toArray(),
266 266
             $this->getResources()
267 267
                 ->keys()
268
-                ->map(function ($value) {
268
+                ->map(function($value) {
269 269
                     return strtolower($value);
270 270
                 })
271 271
                 ->sort()
Please login to merge, or discard this patch.