diff --git a/tests/cli/cli_tests.js b/tests/cli/cli_tests.js index 4b9c994..67b238f 100644 --- a/tests/cli/cli_tests.js +++ b/tests/cli/cli_tests.js @@ -306,7 +306,7 @@ describe('cli', function () { it('runs repolinter with ruleset file path too long', async () => { // 4096 is the max length of a path on ext3/ext4 - const encodedRuleset = new Array('a'.repeat(4097)).join(''); + const encodedRuleset = new Array('a'.repeat(4097)).join('') const [actual, actual2] = await Promise.all([ execAsync(`${repolinterPath} lint -c ${encodedRuleset}`), execAsync(`${repolinterPath} lint --rulesetEncoded ${encodedRuleset}`)