Skip to content

Commit 1f2cc7d

Browse files
committed
build: fix compile error
Signed-off-by: Phil Adams <phil_adams@us.ibm.com>
1 parent 3715840 commit 1f2cc7d

File tree

1 file changed

+7
-7
lines changed
  • modules/iam-identity/src/test/java/com/ibm/cloud/platform_services/iam_identity/v1

1 file changed

+7
-7
lines changed

modules/iam-identity/src/test/java/com/ibm/cloud/platform_services/iam_identity/v1/IamIdentityIT.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1604,7 +1604,7 @@ public void testGetEffectiveAccountSettings() throws Exception {
16041604
assertEquals(effectiveAccountSettingsResponseResult.getAccountId(), ACCOUNT_ID);
16051605
assertNotNull(effectiveAccountSettingsResponseResult.getEffective());
16061606
assertNotNull(effectiveAccountSettingsResponseResult.getAccount());
1607-
1607+
16081608
} catch (ServiceResponseException e) {
16091609
fail(String.format("Service returned status code %d: %s\nError details: %s",
16101610
e.getStatusCode(), e.getMessage(), e.getDebuggingInfo()));
@@ -2618,7 +2618,7 @@ public void testUpdatePreferenceOnScopeAccount() throws Exception {
26182618
assertEquals(preferenceResult.getAccountId(), ACCOUNT_ID);
26192619
assertEquals(preferenceResult.getScope(), "account");
26202620
assertEquals(preferenceResult.getValueString(), VALUE_STRING);
2621-
2621+
26222622
} catch (ServiceResponseException e) {
26232623
fail(String.format("Service returned status code %d: %s\nError details: %s",
26242624
e.getStatusCode(), e.getMessage(), e.getDebuggingInfo()));
@@ -2646,7 +2646,7 @@ public void testGetPreferenceOnScopeAccount() throws Exception {
26462646
assertEquals(preferenceResult.getId(), PREFERENCE_ID_1);
26472647
assertEquals(preferenceResult.getAccountId(), ACCOUNT_ID);
26482648
assertEquals(preferenceResult.getScope(), "account");
2649-
2649+
26502650
} catch (ServiceResponseException e) {
26512651
fail(String.format("Service returned status code %d: %s\nError details: %s",
26522652
e.getStatusCode(), e.getMessage(), e.getDebuggingInfo()));
@@ -2665,8 +2665,8 @@ public void testGetAllPreferencesOnScopeAccount() throws Exception {
26652665
assertNotNull(response);
26662666
assertEquals(response.getStatusCode(), 200);
26672667

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+
26702670
} catch (ServiceResponseException e) {
26712671
fail(String.format("Service returned status code %d: %s\nError details: %s",
26722672
e.getStatusCode(), e.getMessage(), e.getDebuggingInfo()));
@@ -2684,10 +2684,10 @@ public void testDeletePreferenceOnScopeAccount() throws Exception {
26842684
.preferenceId(PREFERENCE_ID_1)
26852685
.build();
26862686

2687-
Response<void> response = service.deletePreferencesOnScopeAccount(deletePreferenceOption).execute();
2687+
Response<Void> response = service.deletePreferencesOnScopeAccount(deletePreferenceOption).execute();
26882688
assertNotNull(response);
26892689
assertEquals(response.getStatusCode(), 204);
2690-
2690+
26912691
} catch (ServiceResponseException e) {
26922692
fail(String.format("Service returned status code %d: %s\nError details: %s",
26932693
e.getStatusCode(), e.getMessage(), e.getDebuggingInfo()));

0 commit comments

Comments
 (0)