Skip to content

Commit

Permalink
test: fix linter issues in test-fs-rmSync-special-char.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeaseen committed Dec 5, 2024
1 parent f434191 commit 3931460
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/parallel/test-fs-rmSync-special-char.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ fs.writeFileSync(filePath, 'This is a test file with special characters.');
fs.rmSync(filePath);

// Ensure the file has been removed
assert.strictEqual(fs.existsSync(filePath), false,
'The file should be removed successfully');
assert.strictEqual(fs.existsSync(filePath), false);

Check failure on line 22 in test/parallel/test-fs-rmSync-special-char.js

View workflow job for this annotation

GitHub Actions / lint-js-and-md

Newline required at end of file but not found

0 comments on commit 3931460

Please sign in to comment.