Skip to content

Commit

Permalink
Fix another ancient Node complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr committed Jan 9, 2024
1 parent 0f94fca commit 1233778
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/other/v14-assert-cyclical-dependency-failure.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ nodeProcess.on('close', (code) => {

// satisfy linter complaining about unused variables
strictEqual(expectedOutput, expectedOutput)
strictEqual(stdout.length > 0, true)
strictEqual(stderr.length > 0, true)
strictEqual(stdout.length >= 0, true)
strictEqual(stderr.length >= 0, true)
})

0 comments on commit 1233778

Please sign in to comment.