@@ -243,11 +243,11 @@ public void testCreateManagedUserSucceedsWithFields() {
243243 String result = TestUtils .getFixture ("BoxUser/CreateManagedUser201" );
244244
245245 wireMockRule .stubFor (WireMock .post (WireMock .urlPathEqualTo (userURL ))
246- .withQueryParam ("fields" , WireMock .equalTo ("name,login,timezone" ))
247- .willReturn (WireMock .okForContentType (APPLICATION_JSON , result )));
246+ .withQueryParam ("fields" , WireMock .equalTo ("name,login,timezone" ))
247+ .willReturn (WireMock .okForContentType (APPLICATION_JSON , result )));
248248
249249 BoxUser .Info createdUserInfo = BoxUser .createEnterpriseUser (
250- this .api , userLogin , userName , "name" , "login" , "timezone"
250+ this .api , userLogin , userName , "name" , "login" , "timezone"
251251 );
252252
253253 assertEquals (userID , createdUserInfo .getID ());
@@ -266,9 +266,9 @@ public void testCreateManagedUserDoesNotIncludeNotdefinedOptionalFields() {
266266 String result = TestUtils .getFixture ("BoxUser/CreateManagedUser201" );
267267
268268 JsonObject createBody = new JsonObject ()
269- .add ("name" , userName )
270- .add ("login" , userLogin )
271- .add ("is_sync_enabled" , isSyncEnabled );
269+ .add ("name" , userName )
270+ .add ("login" , userLogin )
271+ .add ("is_sync_enabled" , isSyncEnabled );
272272
273273 wireMockRule .stubFor (WireMock .post (WireMock .urlPathEqualTo (userURL ))
274274 .withRequestBody (WireMock .equalToJson (createBody .toString ()))
@@ -325,17 +325,17 @@ public void testUpdateUserInfoSucceedsWithFields() {
325325 final String userPhone = "650-123-4567" ;
326326
327327 JsonObject userObject = new JsonObject ()
328- .add ("name" , userName )
329- .add ("login" , userLogin )
330- .add ("job_title" , userJob )
331- .add ("phone" , userPhone );
328+ .add ("name" , userName )
329+ .add ("login" , userLogin )
330+ .add ("job_title" , userJob )
331+ .add ("phone" , userPhone );
332332
333333 String result = TestUtils .getFixture ("BoxUser/UpdateUserInfo200" );
334334
335335 wireMockRule .stubFor (WireMock .put (WireMock .urlPathEqualTo (userURL ))
336- .withQueryParam ("fields" , WireMock .equalTo ("name,login,job_title,phone" ))
337- .withRequestBody (WireMock .equalToJson (userObject .toString ()))
338- .willReturn (WireMock .okForContentType (APPLICATION_JSON , result )));
336+ .withQueryParam ("fields" , WireMock .equalTo ("name,login,job_title,phone" ))
337+ .withRequestBody (WireMock .equalToJson (userObject .toString ()))
338+ .willReturn (WireMock .okForContentType (APPLICATION_JSON , result )));
339339
340340 BoxUser user = new BoxUser (this .api , userID );
341341 BoxUser .Info info = user .new Info ();
@@ -358,8 +358,8 @@ public void testDeleteUserWithParamsSucceeds() {
358358 final String userURL = "/2.0/users/" + userID ;
359359
360360 wireMockRule .stubFor (WireMock .delete (WireMock .urlPathEqualTo (userURL ))
361- .withQueryParam ("force" , new EqualToPattern ("false" ))
362- .withQueryParam ("notify" , new EqualToPattern ("false" ))
361+ .withQueryParam ("force" , new EqualToPattern ("false" ))
362+ .withQueryParam ("notify" , new EqualToPattern ("false" ))
363363 .willReturn (WireMock .noContent ()));
364364
365365 BoxUser user = new BoxUser (this .api , userID );
0 commit comments