diff options
| -rw-r--r-- | test/helper.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helper.py b/test/helper.py index 84b16f770..b7299fb82 100644 --- a/test/helper.py +++ b/test/helper.py @@ -137,8 +137,8 @@ def expect_info_dict(self, expected_dict, got_dict):  def assertRegexpMatches(self, text, regexp, msg=None): -    if hasattr(self, 'assertRegexpMatches'): -        return self.assertRegexpMatches(text, regexp, msg) +    if hasattr(self, 'assertRegexp'): +        return self.assertRegexp(text, regexp, msg)      else:          m = re.match(regexp, text)          if not m:  | 
