mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
fix: return correct block state in deflate_stored & enable tests for level 0
This commit is contained in:
parent
cf1dfe179f
commit
99c8fa83b5
2 changed files with 2 additions and 2 deletions
|
@ -484,7 +484,7 @@ function deflate_stored(s, flush) {
|
|||
return BS_FINISH_STARTED;
|
||||
}
|
||||
/***/
|
||||
return BS_FINISH_STARTED;
|
||||
return BS_FINISH_DONE;
|
||||
}
|
||||
|
||||
if (s.strstart > s.block_start) {
|
||||
|
|
|
@ -65,7 +65,7 @@ describe('Deflate levels', function () {
|
|||
it('level 1', function(done) {
|
||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { level: 1 }, done);
|
||||
});
|
||||
it.skip('level 0', function(done) {
|
||||
it('level 0', function(done) {
|
||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { level: 0 }, done);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue