summaryrefslogtreecommitdiff
path: root/test/parallel/test-path.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-path.js')
-rw-r--r--test/parallel/test-path.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-path.js b/test/parallel/test-path.js
index 6f2ea3fd48..3c5374175a 100644
--- a/test/parallel/test-path.js
+++ b/test/parallel/test-path.js
@@ -456,7 +456,7 @@ if (common.isWindows) {
const spawnResult = child.spawnSync(
process.argv[0], [resolveFixture, currentDriveLetter]);
const resolvedPath = spawnResult.stdout.toString().trim();
- assert.equal(resolvedPath.toLowerCase(), process.cwd().toLowerCase());
+ assert.strictEqual(resolvedPath.toLowerCase(), process.cwd().toLowerCase());
}