From 9c1af3deb846e19c2194243455fa68f74dfad91d Mon Sep 17 00:00:00 2001 From: saul Date: Wed, 29 Mar 2023 11:15:44 +1300 Subject: [PATCH] Fix test descriptions. --- test/path-join.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/path-join.spec.js b/test/path-join.spec.js index b3e50b8..b4fdd30 100644 --- a/test/path-join.spec.js +++ b/test/path-join.spec.js @@ -53,13 +53,13 @@ const win32TestData = createTestData('\\') }) describe('Path join', () => { - it('gives the same results as \'path\' on posix paths', () => { + it('gives the same results as \'path\' using join on posix paths', () => { for (const data of posixTestData) { equal(Path.join(...data), join(...data)) } }) - it('gives the same results as \'path\' in win32 paths', () => { + it('gives the same results as \'path\' using join on win32 paths', () => { for (const data of win32TestData) { equal(Path.join(...data), join(...data)) }