summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/modules/compress/test.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/compress/test.lua b/tests/modules/compress/test.lua
index ac89b28e7..38a65adf9 100644
--- a/tests/modules/compress/test.lua
+++ b/tests/modules/compress/test.lua
@@ -1,6 +1,6 @@
import("core.compress.lz4")
function test_lz4_frame_compress(t)
- t:are_equal(lz4.decompress(lz4.compress("hello world")), "hello world")
+ t:are_equal(lz4.decompress(lz4.compress("hello world")):str(), "hello world")
end