aboutsummaryrefslogtreecommitdiff
path: root/tests/test_lzip_decoder.c
diff options
context:
space:
mode:
authorKian-Meng Ang <kianmeng@cpan.org>2023-11-30 23:01:19 +0800
committerJia Tan <jiat0218@gmail.com>2023-11-30 23:08:05 +0800
commit3b3023e00b0071e10f589bbc3674e0ec432b8add (patch)
treeb37d6a7b70c41b5b83163ffa75e96ae9831b4e0a /tests/test_lzip_decoder.c
parentxz: Fix typo (diff)
downloadxz-3b3023e00b0071e10f589bbc3674e0ec432b8add.tar.xz
Tests: Fix typos
Diffstat (limited to '')
-rw-r--r--tests/test_lzip_decoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_lzip_decoder.c b/tests/test_lzip_decoder.c
index 3743d434..e115573b 100644
--- a/tests/test_lzip_decoder.c
+++ b/tests/test_lzip_decoder.c
@@ -233,7 +233,7 @@ test_v1_trailing(void)
static void
-test_concatentated(void)
+test_concatenated(void)
{
// First test a file with one v0 member and one v1 member
// The first member should contain "Hello\n" and
@@ -474,7 +474,7 @@ main(int argc, char **argv)
tuktest_run(test_v1_decode);
tuktest_run(test_v0_trailing);
tuktest_run(test_v1_trailing);
- tuktest_run(test_concatentated);
+ tuktest_run(test_concatenated);
tuktest_run(test_crc);
tuktest_run(test_invalid_magic_bytes);
tuktest_run(test_invalid_version);