From a2dd3a62a7bbcdee92427f453c22613045066509 Mon Sep 17 00:00:00 2001 From: zhmushan Date: Wed, 5 Dec 2018 12:03:14 +0800 Subject: [PATCH] test: fix wrong parameter PR-URL: https://github.com/nodejs/node/pull/24844 Reviewed-By: Rich Trott Reviewed-By: Trivikram Kamat --- test/parallel/test-path-join.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-path-join.js b/test/parallel/test-path-join.js index 691ba98f9bc095..945cf0e9b5d772 100644 --- a/test/parallel/test-path-join.js +++ b/test/parallel/test-path-join.js @@ -90,7 +90,7 @@ joinTests.push([ [['//', 'foo/bar'], '\\foo\\bar'], [['//', '/foo/bar'], '\\foo\\bar'], [['\\\\', '/', '/foo/bar'], '\\foo\\bar'], - [['//'], '/'], + [['//'], '\\'], // No UNC path expected (share name missing - questionable). [['//foo'], '\\foo'], [['//foo/'], '\\foo\\'],