Skip to content

Commit 8b9709d

Browse files
padamstxpooraniss-ibm
authored andcommitted
fix: fix lint errors
Signed-off-by: Phil Adams <[email protected]> Signed-off-by: poorani <[email protected]>
1 parent 56f15e8 commit 8b9709d

File tree

3 files changed

+517
-234
lines changed

3 files changed

+517
-234
lines changed

examples/iam-identity.v1.test.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2320,10 +2320,10 @@ test('createApiKey request example', async () => {
23202320
expect(iamIDForPreferences).not.toBeNull();
23212321

23222322
originalLog('updatePreferenceOnScopeAccount() result:');
2323-
// begin-update_prefernce_on_scope_account
2323+
// begin-update_preference_on_scope_account
23242324

23252325
const params = {
2326-
accountId: accountID,
2326+
accountId: accountId,
23272327
iamId: iamIDForPreferences,
23282328
service: service,
23292329
preferenceID: preferenceID1,
@@ -2337,7 +2337,7 @@ test('createApiKey request example', async () => {
23372337
console.warn(err);
23382338
}
23392339

2340-
// end-update_prefernce_on_scope_account
2340+
// end-update_preference_on_scope_account
23412341
});
23422342
test('getPreferencesOnScopeAccount request example', async () => {
23432343

@@ -2353,10 +2353,10 @@ test('createApiKey request example', async () => {
23532353
expect(iamIDForPreferences).not.toBeNull();
23542354

23552355
originalLog('getPreferencesOnScopeAccount() result:');
2356-
// begin-get_prefernces_on_scope_account
2356+
// begin-get_preferences_on_scope_account
23572357

23582358
const params = {
2359-
accountId: accountID,
2359+
accountId: accountId,
23602360
iamId: iamIDForPreferences,
23612361
service: service,
23622362
preferenceID: preferenceID1,
@@ -2369,7 +2369,7 @@ test('createApiKey request example', async () => {
23692369
console.warn(err);
23702370
}
23712371

2372-
// end-get_prefernces_on_scope_account
2372+
// end-get_preferences_on_scope_account
23732373
});
23742374
test('getAllPreferencesOnScopeAccount request example', async () => {
23752375

@@ -2385,10 +2385,10 @@ test('createApiKey request example', async () => {
23852385
expect(iamIDForPreferences).not.toBeNull();
23862386

23872387
originalLog('getAllPreferencesOnScopeAccount() result:');
2388-
// begin-get_all_prefernces_on_scope_account
2388+
// begin-get_all_preferences_on_scope_account
23892389

23902390
const params = {
2391-
accountId: accountID,
2391+
accountId: accountId,
23922392
iamId: iamIDForPreferences,
23932393
};
23942394

@@ -2399,7 +2399,7 @@ test('createApiKey request example', async () => {
23992399
console.warn(err);
24002400
}
24012401

2402-
// end-get_all_prefernces_on_scope_account
2402+
// end-get_all_preferences_on_scope_account
24032403
});
24042404
test('deletePreferencesOnScopeAccount request example', async () => {
24052405

@@ -2415,10 +2415,10 @@ test('createApiKey request example', async () => {
24152415
expect(iamIDForPreferences).not.toBeNull();
24162416

24172417
originalLog('deletePreferencesOnScopeAccount() result:');
2418-
// begin-delete_prefernces_on_scope_account
2418+
// begin-delete_preferences_on_scope_account
24192419

24202420
const params = {
2421-
accountId: accountID,
2421+
accountId: accountId,
24222422
iamId: iamIDForPreferences,
24232423
service: service,
24242424
preferenceID: preferenceID1,
@@ -2430,7 +2430,7 @@ test('createApiKey request example', async () => {
24302430
console.warn(err);
24312431
}
24322432

2433-
// end-delete_prefernces_on_scope_account
2433+
// end-delete_preferences_on_scope_account
24342434
});
24352435

24362436
function isFinishedEx(status) {

0 commit comments

Comments
 (0)