Test Setup Failed
Push — master ( 335bea...ddb6c0 )
by
unknown
09:11 queued 05:05
created
Component/MessageQueue/Tests/Unit/Job/DependentJobMessageProcessorTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
             ->expects($this->once())
209 209
             ->method('critical')
210 210
             ->with('Got invalid dependent job data. '.
211
-             'job: "123", dependentJob: "{"topic":"topic-name"}"')
211
+                'job: "123", dependentJob: "{"topic":"topic-name"}"')
212 212
         ;
213 213
 
214 214
         $message = new NullMessage();
Please login to merge, or discard this patch.
src/Oro/Bundle/SyncBundle/Tests/Unit/Wamp/TopicPublisherTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@
 block discarded – undo
34 34
             ->with(
35 35
                 json_encode(
36 36
                     array(
37
-                          \Ratchet\Wamp\ServerProtocol::MSG_PUBLISH,
38
-                          self::TOPIC,
39
-                          self::MESSAGE
37
+                            \Ratchet\Wamp\ServerProtocol::MSG_PUBLISH,
38
+                            self::TOPIC,
39
+                            self::MESSAGE
40 40
                     )
41 41
                 )
42 42
             );
Please login to merge, or discard this patch.
Tests/Unit/Async/Import/PreHttpImportMessageProcessorTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
                     'body' => [
283 283
                         'originFileName' => 'test.csv',
284 284
                         'error' => 'The import file could not be imported due to a fatal error. ' .
285
-                                   'Please check its integrity and try again!',
285
+                                    'Please check its integrity and try again!',
286 286
                     ],
287 287
                     'contentType' => 'text/html',
288 288
                 ]
Please login to merge, or discard this patch.
Tests/Unit/Async/SendImportNotificationMessageProcessorTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
                         'originFileName' => 'originFileName',
127 127
                         'userId' => 1,
128 128
                         'process' => ProcessorRegistry::TYPE_IMPORT,
129
-                       ]))
129
+                        ]))
130 130
         ;
131 131
         $result = $processor->process($message, $this->createSessionMock());
132 132
         $this->assertEquals(MessageProcessorInterface::REJECT, $result);
Please login to merge, or discard this patch.
Tests/Unit/Async/SendImportErrorNotificationMessageProcessorTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
                         'file' => 'file' ,
108 108
                         'error' => 'error test',
109 109
                         'userId' => 1,
110
-                       ]))
110
+                        ]))
111 111
         ;
112 112
         $result = $processor->process($message, $this->createSessionMock());
113 113
         $this->assertEquals(MessageProcessorInterface::REJECT, $result);
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/Engine/Orm/PdoPgsql.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
         $joinAlias = $this->getJoinAlias(Query::TYPE_TEXT, $index);
270 270
 
271 271
         $qb->addSelect(sprintf('TsRank(%s.value, :quotedValue%s) as rankField%s', $joinAlias, $index, $index))
272
-           ->addOrderBy(sprintf('rankField%s', $index), Criteria::DESC);
272
+            ->addOrderBy(sprintf('rankField%s', $index), Criteria::DESC);
273 273
 
274 274
         $parameter = $qb->getParameter(sprintf('value%s', $index));
275 275
         $quotedValue = sprintf('\'%s\'', $parameter->getValue());
Please login to merge, or discard this patch.
src/Oro/Bundle/SearchBundle/EventListener/ORM/FulltextIndexListener.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 class FulltextIndexListener
12 12
 {
13 13
     /**
14
-    * @var Connection
15
-    */
14
+     * @var Connection
15
+     */
16 16
     protected $connection;
17 17
 
18 18
     /**
Please login to merge, or discard this patch.
src/Oro/Bundle/DataGridBundle/Handler/ExportHandler.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
             'readsCount' => $readsCount,
117 117
             'errorsCount' => $errorsCount,
118 118
             'errors' => $errors
119
-         ];
119
+            ];
120 120
     }
121 121
 
122 122
     /**
Please login to merge, or discard this patch.
EntityBundle/Tests/Unit/EventListener/ORM/PartialIndexListenerTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -98,14 +98,14 @@
 block discarded – undo
98 98
         $classInfo = $this->createMock(ClassMetadataInfo::class);
99 99
         $classInfo->method('getTableName')->willReturn($table);
100 100
         $classInfo->table = [
101
-           'indexes' => [
102
-               $index => [
103
-                   'options' => [
104
-                       'where' => 'some condition',
105
-                       'option2' => 'some value'
106
-                   ]
107
-               ]
108
-           ]
101
+            'indexes' => [
102
+                $index => [
103
+                    'options' => [
104
+                        'where' => 'some condition',
105
+                        'option2' => 'some value'
106
+                    ]
107
+                ]
108
+            ]
109 109
         ];
110 110
 
111 111
         return $classInfo;
Please login to merge, or discard this patch.