test-mu-cmd: fix for CI

Seems on Ubuntu we can get back an even smaller message, which still is okay.
So loosen the check a bit.
This commit is contained in:
Dirk-Jan C. Binnema
2022-02-26 11:23:38 +02:00
parent 58af12add6
commit d236ed6e7f

View File

@ -583,10 +583,10 @@ test_mu_view_01(void)
* Added 350 as 'okay', which comes with gmime 2.4.24 (ubuntu 10.04)
*/
len = strlen(output);
if (len < 349) {
if (len < 339) {
g_print ("\n[%s] (%d)\n", output, len);
}
g_assert_cmpuint(len, >, 349);
g_assert_cmpuint(len, >=, 339);
g_free(output);
g_free(cmdline);
g_free(tmpdir);