From d93b934d43269090a31a5b34d11ac03bf591a0eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Isager=20Dalsgar=C3=B0?= Date: Tue, 6 Dec 2022 17:01:47 +0000 Subject: [PATCH] Remove rogue write (#144) --- test/pack.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/pack.js b/test/pack.js index 219ce16..0527c00 100644 --- a/test/pack.js +++ b/test/pack.js @@ -168,7 +168,6 @@ test('large-uid-gid', function (t) { pack.pipe(concat(function (data) { t.is(data.length & 511, 0) t.alike(data, fs.readFileSync(fixtures.LARGE_UID_GID)) - fs.writeFileSync('/tmp/foo', data) })) })