Skip to content

Commit 8085fc8

Browse files
Fix condition in secrets filter
1 parent af5a043 commit 8085fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data/markdown/docs/20 jslib/01 jslib/01 aws/SecretsManagerClient/00 getSecret(secretID).md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)