@@ -1604,7 +1604,7 @@ public void testGetEffectiveAccountSettings() throws Exception {
1604
1604
assertEquals (effectiveAccountSettingsResponseResult .getAccountId (), ACCOUNT_ID );
1605
1605
assertNotNull (effectiveAccountSettingsResponseResult .getEffective ());
1606
1606
assertNotNull (effectiveAccountSettingsResponseResult .getAccount ());
1607
-
1607
+
1608
1608
} catch (ServiceResponseException e ) {
1609
1609
fail (String .format ("Service returned status code %d: %s\n Error details: %s" ,
1610
1610
e .getStatusCode (), e .getMessage (), e .getDebuggingInfo ()));
@@ -2618,7 +2618,7 @@ public void testUpdatePreferenceOnScopeAccount() throws Exception {
2618
2618
assertEquals (preferenceResult .getAccountId (), ACCOUNT_ID );
2619
2619
assertEquals (preferenceResult .getScope (), "account" );
2620
2620
assertEquals (preferenceResult .getValueString (), VALUE_STRING );
2621
-
2621
+
2622
2622
} catch (ServiceResponseException e ) {
2623
2623
fail (String .format ("Service returned status code %d: %s\n Error details: %s" ,
2624
2624
e .getStatusCode (), e .getMessage (), e .getDebuggingInfo ()));
@@ -2646,7 +2646,7 @@ public void testGetPreferenceOnScopeAccount() throws Exception {
2646
2646
assertEquals (preferenceResult .getId (), PREFERENCE_ID_1 );
2647
2647
assertEquals (preferenceResult .getAccountId (), ACCOUNT_ID );
2648
2648
assertEquals (preferenceResult .getScope (), "account" );
2649
-
2649
+
2650
2650
} catch (ServiceResponseException e ) {
2651
2651
fail (String .format ("Service returned status code %d: %s\n Error details: %s" ,
2652
2652
e .getStatusCode (), e .getMessage (), e .getDebuggingInfo ()));
@@ -2665,8 +2665,8 @@ public void testGetAllPreferencesOnScopeAccount() throws Exception {
2665
2665
assertNotNull (response );
2666
2666
assertEquals (response .getStatusCode (), 200 );
2667
2667
2668
- //lists all preferences for the account, returns empty if no preference available to show
2669
-
2668
+ //lists all preferences for the account, returns empty if no preference available to show
2669
+
2670
2670
} catch (ServiceResponseException e ) {
2671
2671
fail (String .format ("Service returned status code %d: %s\n Error details: %s" ,
2672
2672
e .getStatusCode (), e .getMessage (), e .getDebuggingInfo ()));
@@ -2684,10 +2684,10 @@ public void testDeletePreferenceOnScopeAccount() throws Exception {
2684
2684
.preferenceId (PREFERENCE_ID_1 )
2685
2685
.build ();
2686
2686
2687
- Response <void > response = service .deletePreferencesOnScopeAccount (deletePreferenceOption ).execute ();
2687
+ Response <Void > response = service .deletePreferencesOnScopeAccount (deletePreferenceOption ).execute ();
2688
2688
assertNotNull (response );
2689
2689
assertEquals (response .getStatusCode (), 204 );
2690
-
2690
+
2691
2691
} catch (ServiceResponseException e ) {
2692
2692
fail (String .format ("Service returned status code %d: %s\n Error details: %s" ,
2693
2693
e .getStatusCode (), e .getMessage (), e .getDebuggingInfo ()));
0 commit comments