diff options
| author | ruki <[email protected]> | 2022-05-10 23:05:51 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-10 23:05:51 +0800 |
| commit | 44ab25626452ebdc1317f0309be9439a321a8836 (patch) | |
| tree | 8c98dc36eaa030f94a198d728a7289936597f7c2 | |
| parent | 630899925ff386150f022b82374c4d268bcc0443 (diff) | |
fix tests
| -rw-r--r-- | tests/modules/compress/test.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/compress/test.lua b/tests/modules/compress/test.lua index 50a17d323..875b16e33 100644 --- a/tests/modules/compress/test.lua +++ b/tests/modules/compress/test.lua @@ -9,6 +9,6 @@ function test_lz4(t) io.writefile(srcfile, "hello world") lz4.compress_file(srcfile, dstfile) lz4.decompress_file(dstfile, dstfile2) - t:are_equal(io.readfile(srcfile) == io.readfile(dstfile2)) + t:are_equal(io.readfile(srcfile), io.readfile(dstfile2)) end |
