Remove rogue write (#144)

This commit is contained in:
Kasper Isager Dalsgarð 2022-12-06 17:01:47 +00:00 committed by GitHub
parent 32353cc02c
commit d93b934d43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,7 +168,6 @@ test('large-uid-gid', function (t) {
pack.pipe(concat(function (data) { pack.pipe(concat(function (data) {
t.is(data.length & 511, 0) t.is(data.length & 511, 0)
t.alike(data, fs.readFileSync(fixtures.LARGE_UID_GID)) t.alike(data, fs.readFileSync(fixtures.LARGE_UID_GID))
fs.writeFileSync('/tmp/foo', data)
})) }))
}) })