mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 08:42:59 +00:00
[test/subset] Fix a regular expression
This commit is contained in:
parent
1f0559392d
commit
f09c4d6dd8
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class Test:
|
|||
return self.subset[0]
|
||||
elif self.subset == "no-unicodes":
|
||||
return ""
|
||||
elif re.match("^U\+", self.subset):
|
||||
elif re.match(r"^U\+", self.subset):
|
||||
s = re.sub(r"U\+", "", self.subset)
|
||||
return s
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue