]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-smtp: test-smtp-server-errors - Fix "MAIL broken path" test.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Thu, 21 Nov 2019 14:35:28 +0000 (15:35 +0100)
committerTimo Sirainen <timo.sirainen@open-xchange.com>
Thu, 21 Nov 2019 17:09:48 +0000 (19:09 +0200)
The test label and the number of clients was wrong.

src/lib-smtp/test-smtp-server-errors.c

index 1a96fa89ba0ab4554650503d106a2cf33d186b91..60d5ed812704f0585ef10139c80813051cd2f5d9 100644 (file)
@@ -2226,10 +2226,10 @@ static void test_mail_broken_path(void)
        smtp_server_set.mail_path_allow_broken = TRUE;
        smtp_server_set.max_client_idle_time_msecs = 1000;
 
-       test_begin("MAIL workarounds");
+       test_begin("MAIL broken path");
        test_run_client_server(&smtp_server_set,
                test_server_mail_broken_path,
-               test_client_mail_broken_path, 16);
+               test_client_mail_broken_path, 18);
        test_end();
 }