@@ -117,7 +117,8 @@ public class HTTPClientTest {
117
117
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
118
118
119
119
when (client .buildRequest (HttpVerbs .GET , "/foo" , params , null ,null )).thenReturn (request );
120
- when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , params , null ,null )).thenCallRealMethod ();
120
+ when (client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , params , null ,null ))
121
+ .thenCallRealMethod ();
121
122
122
123
Response response = client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , params , null , null );
123
124
@@ -137,7 +138,8 @@ public class HTTPClientTest {
137
138
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
138
139
139
140
when (client .buildRequest (HttpVerbs .DELETE , "/foo" , params , null ,null )).thenReturn (request );
140
- when (client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null , null )).thenCallRealMethod ();
141
+ when (client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null , null ))
142
+ .thenCallRealMethod ();
141
143
142
144
Response response = client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null , null );
143
145
@@ -181,7 +183,8 @@ public class HTTPClientTest {
181
183
new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
182
184
183
185
when (client .buildRequest (HttpVerbs .POST , "/foo" , null , null ,null )).thenReturn (request );
184
- when (client .unauthenticatedRequest (HttpVerbs .POST , "/foo" , null , null ,null )).thenCallRealMethod ();
186
+ when (client .unauthenticatedRequest (HttpVerbs .POST , "/foo" , null , null ,null ))
187
+ .thenCallRealMethod ();
185
188
186
189
Response response = client .unauthenticatedRequest (HttpVerbs .POST , "/foo" , null , null ,null );
187
190
0 commit comments