File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/data/markdown/docs/20 jslib/01 jslib/01 aws/SecretsManagerClient Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export default function () {
3838 // List the secrets the AWS authentication configuration
3939 // gives us access to.
4040 const secrets = secretsManager .listSecrets ();
41- if (! secrets .filter ((s ) => s .name === testSecretName).length == 0 ) {
41+ if (secrets .filter ((s ) => s .name === testSecretName).length == 0 ) {
4242 exec .test .abort (' test secret not found' );
4343 }
4444
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export default function () {
3434 // List the secrets the AWS authentication configuration
3535 // gives us access to, and verify the test secret exists.
3636 const secrets = secretsManager .listSecrets ();
37- if (! secrets .filter ((s ) => s .name === testSecretName).length == 0 ) {
37+ if (secrets .filter ((s ) => s .name === testSecretName).length == 0 ) {
3838 exec .test .abort (' test secret not found' );
3939 }
4040
@@ -44,4 +44,4 @@ export default function () {
4444
4545_ A k6 script that will list a user's secrets from AWS secrets manager_
4646
47- </CodeGroup >
47+ </CodeGroup >
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default function () {
4242 const secrets = secretsManager .listSecrets ();
4343
4444 // If our test secret does not exist, abort the execution.
45- if (! secrets .filter ((s ) => s .name === testSecretName).length == 0 ) {
45+ if (secrets .filter ((s ) => s .name === testSecretName).length == 0 ) {
4646 exec .test .abort (' test secret not found' );
4747 }
4848
You can’t perform that action at this time.
0 commit comments