Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
After removing unused field from bit writer.
  • Loading branch information
ianic committed Jan 29, 2024
1 parent c44d10d commit 97ab7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deflate.zig
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ test "check struct sizes" {

const Hbw = hbw.HuffmanBitWriter(@TypeOf(io.null_writer));
// huffman bit writer internal: 11480
const hbw_size = 11480; // 11.2k
const hbw_size = 11472; // 11.2k
try expect(@sizeOf(Hbw) == hbw_size);

//const D = Deflate(Hbw);
Expand Down

0 comments on commit 97ab7b4

Please sign in to comment.