Skip to content

Commit cc3599d

Browse files
committed
Fix tests for py32-py34 envs
1 parent 1a5bd6b commit cc3599d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/verbal_expressions_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ class VerExTest(unittest.TestCase):
1111
'''
1212
Tests for verbal_expressions.py
1313
'''
14-
14+
15+
if six.PY3:
16+
assertNotRegexpMatches = unittest.TestCase.assertNotRegex
17+
1518
def setUp(self):
1619
self.v = verbalexpressions.VerEx()
1720

0 commit comments

Comments
 (0)