Passed
Push — master ( b06233...d7b164 )
by Sergey
48s queued 13s
created
tests/Integration/Models/Counterparty/SavePrivatePersonTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $sfx = $this->randomString(5);
35 35
         $counterparty = [
36
-            'FirstName' => 'Іван' . $sfx,
37
-            'MiddleName' => 'Іванович' . $sfx,
38
-            'LastName' => 'Іванов' . $sfx,
36
+            'FirstName' => 'Іван'.$sfx,
37
+            'MiddleName' => 'Іванович'.$sfx,
38
+            'LastName' => 'Іванов'.$sfx,
39 39
             'Phone' => rand(380000000000, 380000999999),
40 40
             'Email' => '[email protected]',
41 41
             'CounterpartyProperty' => 'Recipient',
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
         //update counterparty
49 49
         $counterparty['Ref'] = $actualResult['Ref'];
50
-        $counterparty['MiddleName'] = 'Петрович' . $sfx;
50
+        $counterparty['MiddleName'] = 'Петрович'.$sfx;
51 51
         $counterparty['CityRef'] = self::CITY_REF_KHARKIV;
52 52
 
53 53
         $actualResult = $this->model->updatePrivatePerson($counterparty);
Please login to merge, or discard this patch.
tests/Integration/Models/InternetDocument/CrudTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
             }
141 141
             $attemptsNotExceeded = $attempt <= 3;
142 142
             if ($attemptsNotExceeded) {
143
-                printf(PHP_EOL . 'Attempt %d to delete document failed.' . PHP_EOL, $attempt);
143
+                printf(PHP_EOL.'Attempt %d to delete document failed.'.PHP_EOL, $attempt);
144 144
                 sleep(5 * $attempt);
145 145
                 $this->deleteDocument($ref, ++$attempt);
146 146
             } else {
Please login to merge, or discard this patch.