Test Setup Failed
Push — master ( 8453e3...c4f98f )
by
unknown
03:53
created
src/Oro/Component/MessageQueue/Job/RootJobStatusCalculator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
         $rootStopped = false;
49 49
         $statusAndProgressCalculator = $this->statusCalculatorResolver->getCalculatorForRootJob($rootJob);
50
-        $this->jobStorage->saveJob($rootJob, function (Job $rootJob) use (
50
+        $this->jobStorage->saveJob($rootJob, function(Job $rootJob) use (
51 51
             &$rootStopped,
52 52
             $calculateProgress,
53 53
             $statusAndProgressCalculator
Please login to merge, or discard this patch.
Oro/Bundle/SearchBundle/Tests/Unit/Transformer/MessageTransformerTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
 
75 75
         $this->assertEquals(
76 76
             [
77
-                ['class' => 'stdClass1','entityIds' => [48 => 48]],
78
-                ['class' => 'stdClass2','entityIds' => [54 => 54]],
77
+                ['class' => 'stdClass1', 'entityIds' => [48 => 48]],
78
+                ['class' => 'stdClass2', 'entityIds' => [54 => 54]],
79 79
             ],
80 80
             $this->transformer->transform($entities)
81 81
         );
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
         $this->doctrineHelper->expects($this->exactly($entitiesCount))
94 94
             ->method('getSingleEntityIdentifier')
95
-            ->will($this->returnCallback(function () {
95
+            ->will($this->returnCallback(function() {
96 96
                 static $id = 0;
97 97
                 return $id++;
98 98
             }));
Please login to merge, or discard this patch.