Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kbkpbot committed Jan 4, 2025
1 parent 172827c commit 59209c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vlib/compress/gzip/read_gz_files_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ fn test_reading_gzip_files_compressed_with_different_options() {
}

fn test_compress_with_deferent_level() {
_, content9 := read_and_decode_file(s('readme_level_9.gz'))!
compressed := os.read_bytes(s('readme_level_9.gz'))!
content9 := gzip.decompress(compressed)!

// compression: Huffman only=0
compress_0 := gzip.compress(content9, flags: int(gzip.CompressFlags.huffman_only))!
Expand Down

0 comments on commit 59209c6

Please sign in to comment.