@@ -117,7 +117,8 @@ public class HTTPClientTest {
117117 new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
118118
119119 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 ();
121122
122123 Response response = client .unauthenticatedRequest (HttpVerbs .GET , "/foo" , params , null , null );
123124
@@ -137,7 +138,8 @@ public class HTTPClientTest {
137138 new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
138139
139140 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 ();
141143
142144 Response response = client .unauthenticatedRequest (HttpVerbs .DELETE , "/foo" , params , null , null );
143145
@@ -181,7 +183,8 @@ public class HTTPClientTest {
181183 new ByteArrayInputStream ("{ \" data\" : [{}]}" .getBytes ()));
182184
183185 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 ();
185188
186189 Response response = client .unauthenticatedRequest (HttpVerbs .POST , "/foo" , null , null ,null );
187190
0 commit comments