Merge pull request #1511 from derekschrock/test-mu-maildir

lib: Allow hostname of newbase to match alnum
This commit is contained in:
Dirk-Jan C. Binnema 2019-11-17 14:20:17 +02:00 committed by GitHub
commit 0c7831b5c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ test_mu_maildir_get_new_path_new (void)
assert_matches_regexp (newbase,
"\\d+\\."
"[[:xdigit:]]{16}\\."
"[[:alpha:]]+(:2,.*)?");
"[[:alnum:]][[:alnum:]-]+(:2,.*)?");
g_free (newbase);
g_free(str);
}