From: Stephan Bosch Date: Thu, 21 Nov 2019 14:35:28 +0000 (+0100) Subject: lib-smtp: test-smtp-server-errors - Fix "MAIL broken path" test. X-Git-Tag: 2.3.10~284 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7807f391cdd8a5214b4da71fdb6f2985f1e6005d;p=thirdparty%2Fdovecot%2Fcore.git lib-smtp: test-smtp-server-errors - Fix "MAIL broken path" test. The test label and the number of clients was wrong. --- diff --git a/src/lib-smtp/test-smtp-server-errors.c b/src/lib-smtp/test-smtp-server-errors.c index 1a96fa89ba..60d5ed8127 100644 --- a/src/lib-smtp/test-smtp-server-errors.c +++ b/src/lib-smtp/test-smtp-server-errors.c @@ -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(); }