Completed
Push — master ( 7d75c9...1373cb )
by Oss
03:46
created
src/Brownie/HttpClient/HttpClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         while (1 <= $attempts) {
56 56
             $response = $this->getClient()->httpRequest($request);
57 57
             $attempts--;
58
-            if (empty($successfulHttpCodes) || in_array($response->getHttpCode(), $successfulHttpCodes) ) {
58
+            if (empty($successfulHttpCodes) || in_array($response->getHttpCode(), $successfulHttpCodes)) {
59 59
                 $attempts = 0;
60 60
             }
61 61
             if (0 < $attempts) {
Please login to merge, or discard this patch.