From 422d799f7e0253bbb98022d2989a459c9ab9384e Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Fri, 16 Aug 2024 07:43:27 -0400 Subject: [PATCH] Fix test --- index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.test.js b/index.test.js index 50fa830..09f1772 100644 --- a/index.test.js +++ b/index.test.js @@ -189,7 +189,7 @@ test('WACZ constructor accounts for options.datapackageExtras if provided.', asy test('WACZ constructor accounts for options.logDirectory if valid.', async (_t) => { const archive = new WACZ({ input: FIXTURE_INPUT, logDirectory: LOG_DIR_FIXTURES_PATH }) - assert.equal(archive.logDirectory, LOG_DIR_FIXTURES_PATH) + assert.equal(archive.logDir, LOG_DIR_FIXTURES_PATH) }) test('addPage adds entry to pagesTree and turns detectPages off.', async (_t) => {