mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-23 02:23:07 +02:00
tests: base: Allow more unicode characters in the description during uuid matching
This commit is contained in:
parent
9586549eed
commit
2e402bf721
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class IntegrationTest(object):
|
||||||
# Helper function that fills in {uuid} placeholders with correct UUIDs
|
# Helper function that fills in {uuid} placeholders with correct UUIDs
|
||||||
def fill_uuid(self, line):
|
def fill_uuid(self, line):
|
||||||
# Tasks in testing can have only alphanumerical descriptions
|
# Tasks in testing can have only alphanumerical descriptions
|
||||||
match = re.match(u'\\s*\\* \\[.\\] (?P<desc>[äa-zA-Z0-9 ]*)(?<!\\s)', line,
|
match = re.match(u'\\s*\\* \\[.\\] (?P<desc>[äéôa-zA-Z0-9 ]*)(?<!\\s)', line,
|
||||||
flags=re.UNICODE)
|
flags=re.UNICODE)
|
||||||
|
|
||||||
if not match:
|
if not match:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue