Skip to content

Commit a008851

Browse files
authored
Fix unknown escape sequence (#244)
1 parent 0dd0ed3 commit a008851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ def testRE(self):
719719
'rule test { strings: $a = /[M-N]iss/ nocase condition: $a }',
720720
'rule test { strings: $a = /(Mi|ssi)ssippi/ nocase condition: $a }',
721721
r'rule test { strings: $a = /ppi\tmi/ condition: $a }',
722-
'rule test { strings: $a = /ppi\.mi/ condition: $a }',
722+
r'rule test { strings: $a = /ppi\.mi/ condition: $a }',
723723
'rule test { strings: $a = /^mississippi/ fullword condition: $a }',
724724
'rule test { strings: $a = /mississippi.*mississippi$/s condition: $a }',
725725
], 'mississippi\tmississippi.mississippi\nmississippi')

0 commit comments

Comments
 (0)