]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib: test-istream-base64-encoder - Fix test names.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Wed, 4 Sep 2019 21:40:25 +0000 (23:40 +0200)
committerVille Savolainen <ville.savolainen@dovecot.fi>
Tue, 10 Sep 2019 07:02:42 +0000 (10:02 +0300)
src/lib/test-istream-base64-encoder.c

index a0b68fed1e4e04e26a7a915d054ba19b3d8e2158..9fc060899d349c398fbc535e644e9dfef727eb71 100644 (file)
@@ -194,7 +194,7 @@ void test_istream_base64_encoder(void)
                const struct base64_istream_test *test = &base64_tests[i];
 
                test_begin(t_strdup_printf(
-                       "istream base64 decoder %u", i+1));
+                       "istream base64 encoder %u", i+1));
                encode_base64_test(test->input, test->chars_per_line,
                                   test->crlf, test->output);
                test_end();
@@ -204,7 +204,7 @@ void test_istream_base64_encoder(void)
                const struct base64_istream_test *test = &base64url_tests[i];
 
                test_begin(t_strdup_printf(
-                       "istream base64url decoder %u", i+1));
+                       "istream base64url encoder %u", i+1));
                encode_base64url_test(test->input, test->chars_per_line,
                                      test->crlf, test->output);
                test_end();