* update test_view so we don't fail with gmime 2.4.24

This commit is contained in:
Dirk-Jan C. Binnema 2011-04-16 14:25:40 +03:00
parent d0cd64605d
commit f49f36bede
1 changed files with 4 additions and 1 deletions

View File

@ -388,9 +388,12 @@ test_mu_view_01 (void)
* both are 'okay' from mu's perspective; it'd be even better
* to have some #ifdefs for the GMime versions, but this
* should work for now
*
* Added 350 as 'okay', which comes with gmime 2.4.24 (ubuntu 10.04)
*/
len = strlen(output);
g_assert (len == 370 || len == 358);
/* g_print ("\n[%s] (%d)\n", output, len); */
g_assert (len == 370 || len == 358 || len == 350);
g_free (output);
g_free (cmdline);