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 6, 2024
1 parent f434191 commit 2572f57
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);

0 comments on commit 2572f57

Please sign in to comment.