From 0090713ea9d8048b15e2aa7151c4df79e31958b3 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 25 Jun 2023 21:22:00 +0300 Subject: [PATCH] test.js: fix typo --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 0279541..ba1f094 100644 --- a/test.js +++ b/test.js @@ -105,7 +105,7 @@ test.serial('set mtime', async t => { t.deepEqual(files[0].mtime, stat.mtime); }); -test('return emptpy array if no plugins are set', async t => { +test('return empty array if no plugins are set', async t => { const files = await decompress(path.join(__dirname, 'fixtures', 'file.tar'), {plugins: []}); t.is(files.length, 0); });