1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Tests: Fix typos

This commit is contained in:
Kian-Meng Ang 2023-11-30 23:01:19 +08:00 committed by Jia Tan
parent 424d46ead8
commit 3b3023e00b
2 changed files with 3 additions and 3 deletions

View file

@ -100,7 +100,7 @@ test_lzma_index_memused(void)
static void
test_lzma_index_append(void)
{
// Basic input-ouput test done here.
// Basic input-output test done here.
// Less trivial tests for this function are done throughout
// other tests.

View file

@ -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);