diff options
author | 2022-05-07 13:27:23 -0700 | |
---|---|---|
committer | 2022-05-07 13:27:23 -0700 | |
commit | 94637711b9f558576ffebe2f5dd834dc05a95f7b (patch) | |
tree | 64acbb6fb4e6ee7bc1f88cedfe299a2c92d15103 | |
parent | bdf28e42f656c7abee7794be08752ae5ca9b8063 (diff) | |
download | bun-94637711b9f558576ffebe2f5dd834dc05a95f7b.tar.gz bun-94637711b9f558576ffebe2f5dd834dc05a95f7b.tar.zst bun-94637711b9f558576ffebe2f5dd834dc05a95f7b.zip |
Update zlib.test.js
-rw-r--r-- | integration/bunjs-only-snippets/zlib.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration/bunjs-only-snippets/zlib.test.js b/integration/bunjs-only-snippets/zlib.test.js index 64708529f..aecb095cc 100644 --- a/integration/bunjs-only-snippets/zlib.test.js +++ b/integration/bunjs-only-snippets/zlib.test.js @@ -9,7 +9,7 @@ describe("zlib", () => { expect(decompressed.join("")).toBe(data.join("")); }); - it("should be able to compress and decompress", () => { + it("should be able to gzip and gunzip", () => { const data = new TextEncoder().encode("Hello World!".repeat(1)); const compressed = gzipSync(data); const decompressed = gunzipSync(compressed); |