@@ -137,7 +137,7 @@ public class HTTPClientTest {
137
137
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
138
138
139
139
when (client .buildRequest (HttpVerbs .DELETE , "/foo" , params , null ,null )).thenReturn (request );
140
- when (client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null ,null )).thenCallRealMethod ();
140
+ when (client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null , null )).thenCallRealMethod ();
141
141
142
142
Response response = client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null , null );
143
143
@@ -222,7 +222,8 @@ public class HTTPClientTest {
222
222
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
223
223
224
224
when (client .buildRequest (HttpVerbs .GET , "/foo" , null , null ,null )).thenReturn (request );
225
- when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null )).thenCallRealMethod ();
225
+ when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null ))
226
+ .thenCallRealMethod ();
226
227
227
228
client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null );
228
229
@@ -241,7 +242,8 @@ public class HTTPClientTest {
241
242
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
242
243
243
244
when (client .buildRequest (HttpVerbs .GET , "/foo" , null , null ,null )).thenReturn (request );
244
- when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null )).thenCallRealMethod ();
245
+ when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null ))
246
+ .thenCallRealMethod ();
245
247
246
248
client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null );
247
249
@@ -261,7 +263,8 @@ public class HTTPClientTest {
261
263
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
262
264
263
265
when (client .buildRequest (HttpVerbs .GET , "/foo" , null , null ,null )).thenReturn (request );
264
- when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null )).thenCallRealMethod ();
266
+ when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null ))
267
+ .thenCallRealMethod ();
265
268
266
269
client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , null , null ,null );
267
270
0 commit comments