summaryrefslogtreecommitdiff
path: root/cpio/test/test_option_zstd.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpio/test/test_option_zstd.c')
-rw-r--r--cpio/test/test_option_zstd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpio/test/test_option_zstd.c b/cpio/test/test_option_zstd.c
index 228356a7..29b8c78b 100644
--- a/cpio/test/test_option_zstd.c
+++ b/cpio/test/test_option_zstd.c
@@ -34,7 +34,7 @@ DEFINE_TEST(test_option_zstd)
/* Create a file. */
assertMakeFile("f", 0644, "a");
- /* Archive it with lz4 compression. */
+ /* Archive it with zstd compression. */
r = systemf("echo f | %s -o --zstd >archive.out 2>archive.err",
testprog);
p = slurpfile(&s, "archive.err");
@@ -75,7 +75,7 @@ DEFINE_TEST(test_option_zstd)
goto done;
}
free(p);
- /* Check that the archive file has an lz4 signature. */
+ /* Check that the archive file has an zstd signature. */
p = slurpfile(&s, "archive.out");
assert(s > 2);
assertEqualMem(p, "\x28\xb5\x2f\xfd", 4);