Skip to content

Commit d6639f1

Browse files
committed
fix: correct zstd size in plugin test case
1 parent 35598fe commit d6639f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ describe('Plugin', function () {
192192
it('should support zstd', async function () {
193193
const config = makeWebpackConfig({analyzerOpts: {compressionAlgorithm: 'zstd'}});
194194
await webpackCompile(config, '4.44.2');
195-
await expectValidReport({parsedSize: 1311, gzipSize: undefined, brotliSize: undefined, zstdSize: 302});
195+
await expectValidReport({parsedSize: 1311, gzipSize: undefined, brotliSize: undefined, zstdSize: 301});
196196
});
197197
});
198198
});

0 commit comments

Comments
 (0)