fix: return correct block state in deflate_stored & enable tests for level 0

This commit is contained in:
nik 2014-02-18 22:30:46 -03:00
parent cf1dfe179f
commit 99c8fa83b5
2 changed files with 2 additions and 2 deletions

View file

@ -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) {

View file

@ -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);
});