Sfoglia il codice sorgente

[test/helper] Do not use deprecated method

Philipp Hagemeister 11 anni fa
parent
commit
0fd7fd71b4
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      test/helper.py

+ 2 - 2
test/helper.py

@@ -137,8 +137,8 @@ def expect_info_dict(self, expected_dict, got_dict):
 
 
 
 
 def assertRegexpMatches(self, text, regexp, msg=None):
 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:
     else:
         m = re.match(regexp, text)
         m = re.match(regexp, text)
         if not m:
         if not m: