Completed
Push — product-browsing ( 878044...717d90 )
by Kamil
22:24
created
tests/Controller/ProductApiTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
85 85
         $products = $this->loadFixturesFromFile('resources/products.yml');
86 86
 
87
-        $this->client->request('GET', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept);
87
+        $this->client->request('GET', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept);
88 88
 
89 89
         $response = $this->client->getResponse();
90 90
         $this->assertResponse($response, 'product/show_response', Response::HTTP_OK);
@@ -111,12 +111,12 @@  discard block
 block discarded – undo
111 111
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
112 112
         $products = $this->loadFixturesFromFile('resources/products.yml');
113 113
 
114
-        $this->client->request('DELETE', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithContentType, []);
114
+        $this->client->request('DELETE', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithContentType, []);
115 115
 
116 116
         $response = $this->client->getResponse();
117 117
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
118 118
 
119
-        $this->client->request('GET', '/api/v1/products/'.$products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept);
119
+        $this->client->request('GET', '/api/v1/products/' . $products['product1']->getId(), [], [], static::$authorizedHeaderWithAccept);
120 120
 
121 121
         $response = $this->client->getResponse();
122 122
         $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
             }
187 187
         }
188 188
 EOT;
189
-        $this->client->request('PUT', '/api/v1/products/'. $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
189
+        $this->client->request('PUT', '/api/v1/products/' . $products["product3"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
190 190
         $response = $this->client->getResponse();
191 191
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
192 192
     }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             }
211 211
         }
212 212
 EOT;
213
-        $this->client->request('PATCH', '/api/v1/products/'. $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
213
+        $this->client->request('PATCH', '/api/v1/products/' . $products["product1"]->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
214 214
         $response = $this->client->getResponse();
215 215
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
216 216
     }
Please login to merge, or discard this patch.