Skip to content

Commit

Permalink
change test names again
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Dec 16, 2023
1 parent efd98b6 commit e6911ab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ describe('hosted rotation', () => {
});
});

test('use the arn as is when specifying masterSecret as an imported secret with full arn', () => {
test('the arn is used as it is when specifying masterSecret as an imported secret with full arn', () => {
// GIVEN
const secret = new secretsmanager.Secret(stack, 'Secret');
const importedSecret = secretsmanager.Secret.fromSecretCompleteArn(stack, 'MasterSecretImported', 'arn:aws:secretsmanager:us-east-1:123456789012:secret:MySecret-123456');
Expand All @@ -613,7 +613,7 @@ describe('hosted rotation', () => {
});
});

test('use the arn with -?????? when specifying masterSecret as an imported secret with partial arn', () => {
test('the arn is used with -?????? when specifying masterSecret as an imported secret with partial arn', () => {
// GIVEN
const secret = new secretsmanager.Secret(stack, 'Secret');
const importedSecret = secretsmanager.Secret.fromSecretNameV2(stack, 'MasterSecretImported', 'MySecret');
Expand Down

0 comments on commit e6911ab

Please sign in to comment.