Skip to content

Commit

Permalink
chore: fix lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Neil Zhao <[email protected]>
  • Loading branch information
zhaoyuheng200 authored and hyandell committed Oct 27, 2023
1 parent a9c2142 commit 9b596a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/cli_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
Expand Down

0 comments on commit 9b596a7

Please sign in to comment.