summaryrefslogtreecommitdiff
path: root/test/parallel/test-path-makelong.js
diff options
context:
space:
mode:
authorGibson Fahnestock <gib@uk.ibm.com>2017-01-08 15:36:25 +0000
committerGibson Fahnestock <gib@uk.ibm.com>2017-01-11 14:19:26 +0000
commit3d2aef3979cf7ac986908dbb9879216caec4a3ff (patch)
tree0566cf3150e4b9bcce3359814b3927c562bdbc42 /test/parallel/test-path-makelong.js
parent81fef918d5a8a9aa297b78ade5e58d6caa3176e6 (diff)
downloadandroid-node-v8-3d2aef3979cf7ac986908dbb9879216caec4a3ff.tar.gz
android-node-v8-3d2aef3979cf7ac986908dbb9879216caec4a3ff.tar.bz2
android-node-v8-3d2aef3979cf7ac986908dbb9879216caec4a3ff.zip
test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Diffstat (limited to 'test/parallel/test-path-makelong.js')
-rw-r--r--test/parallel/test-path-makelong.js27
1 files changed, 14 insertions, 13 deletions
diff --git a/test/parallel/test-path-makelong.js b/test/parallel/test-path-makelong.js
index 293d6284f1..1284f62516 100644
--- a/test/parallel/test-path-makelong.js
+++ b/test/parallel/test-path-makelong.js
@@ -7,18 +7,19 @@ if (common.isWindows) {
const file = path.join(common.fixturesDir, 'a.js');
const resolvedFile = path.resolve(file);
- assert.equal('\\\\?\\' + resolvedFile, path._makeLong(file));
- assert.equal('\\\\?\\' + resolvedFile, path._makeLong('\\\\?\\' + file));
- assert.equal('\\\\?\\UNC\\someserver\\someshare\\somefile',
- path._makeLong('\\\\someserver\\someshare\\somefile'));
- assert.equal('\\\\?\\UNC\\someserver\\someshare\\somefile',
- path._makeLong('\\\\?\\UNC\\someserver\\someshare\\somefile'));
- assert.equal('\\\\.\\pipe\\somepipe',
- path._makeLong('\\\\.\\pipe\\somepipe'));
+ assert.strictEqual('\\\\?\\' + resolvedFile, path._makeLong(file));
+ assert.strictEqual('\\\\?\\' + resolvedFile, path._makeLong('\\\\?\\' +
+ file));
+ assert.strictEqual('\\\\?\\UNC\\someserver\\someshare\\somefile',
+ path._makeLong('\\\\someserver\\someshare\\somefile'));
+ assert.strictEqual('\\\\?\\UNC\\someserver\\someshare\\somefile', path
+ ._makeLong('\\\\?\\UNC\\someserver\\someshare\\somefile'));
+ assert.strictEqual('\\\\.\\pipe\\somepipe',
+ path._makeLong('\\\\.\\pipe\\somepipe'));
}
-assert.equal(path._makeLong(null), null);
-assert.equal(path._makeLong(100), 100);
-assert.equal(path._makeLong(path), path);
-assert.equal(path._makeLong(false), false);
-assert.equal(path._makeLong(true), true);
+assert.strictEqual(path._makeLong(null), null);
+assert.strictEqual(path._makeLong(100), 100);
+assert.strictEqual(path._makeLong(path), path);
+assert.strictEqual(path._makeLong(false), false);
+assert.strictEqual(path._makeLong(true), true);