From 3fa283cb36cd792b704f835861b81a80d60f2636 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 30 Jan 2023 17:21:34 -0800 Subject: [PATCH] one more windows test path fix --- test/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.ts b/test/index.ts index e5bff72..b76ef59 100644 --- a/test/index.ts +++ b/test/index.ts @@ -59,7 +59,7 @@ t.test('basic making of dirs should work', async t => { mkdirSync(path, opts) const opts = { mkdir: myMkdir, mkdirSync: myMkdirSync } //@ts-ignore - t.equal(s(mkdirp.sync(`${dir}/a/custom-sync`, opts)), `${dir}/a/custom-sync`) + t.equal(s(mkdirp.sync(`${dir}/a/custom-sync`, opts)), s(`${dir}/a/custom-sync`)) check(`${dir}/a/custom-sync`) //@ts-ignore t.equal(s(mkdirp.sync(`${dir}/a/custom-sync`, opts)), undefined)