Skip to content

Commit f6d7bf3

Browse files
committed
fix linter
1 parent 6404d94 commit f6d7bf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/AuthTest.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("Authentication validation", () => {
1818
cxScanConfig_fail.clientSecret = "error";
1919
cxScanConfig_fail.tenant = process.env["CX_TENANT"];
2020
cxScanConfig_fail.apiKey = "error";
21-
let auth = await CxWrapperFactory.createWrapper(cxScanConfig_fail);
21+
const auth = await CxWrapperFactory.createWrapper(cxScanConfig_fail);
2222
const cxCommandOutput: CxCommandOutput = await auth.authValidate();
2323
expect(cxCommandOutput.exitCode).toBe(1);
2424
});

0 commit comments

Comments
 (0)