Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
avivkeller authored Aug 15, 2024
1 parent b7af227 commit 4e1b9ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-dotenv-edge-cases.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('.env supports edge cases', () => {
{ cwd: fixtures.path('dotenv') },
);
assert.strictEqual(child.stdout, '');
assert.match(child.stderr, /bad option: --env-file-XYZ/)
assert.match(child.stderr, /bad option: --env-file-XYZ/);
assert.strictEqual(child.code, 9);
});

Expand All @@ -137,7 +137,7 @@ describe('.env supports edge cases', () => {
{ cwd: fixtures.path('dotenv') },
);
assert.strictEqual(child.stdout, '');
assert.strictEqual(child.stderr, '')
assert.strictEqual(child.stderr, '');
assert.strictEqual(child.code, 0);
});
});

0 comments on commit 4e1b9ce

Please sign in to comment.