aboutsummaryrefslogtreecommitdiffstats
path: root/functest/tests/unit/test_utils.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-12-11 13:44:42 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2017-12-12 05:03:45 +0100
commitdf6ee9b1222ebd81fa22ce3499e536abe7bcb05e (patch)
tree2517662ac546431a93f7c1aee1070bf55c7b29f2 /functest/tests/unit/test_utils.py
parent41a81e7f5ca5d3733e6e5655f5ece7859ce9f49b (diff)
Add python3 for Functest utils
It also fixes test_utils RegexMatch and SubstrMatch. Change-Id: I124aa7d0c4110dcd2f50220aae7ba9b299799e93 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/tests/unit/test_utils.py')
-rw-r--r--functest/tests/unit/test_utils.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/functest/tests/unit/test_utils.py b/functest/tests/unit/test_utils.py
index e171db022..159047649 100644
--- a/functest/tests/unit/test_utils.py
+++ b/functest/tests/unit/test_utils.py
@@ -8,16 +8,22 @@
import re
-class RegexMatch(str):
+class RegexMatch(object):
+ def __init__(self, msg):
+ self.msg = msg
+
def __eq__(self, other):
- match = re.search(self, other)
+ match = re.search(self.msg, other)
if match:
return True
return False
-class SubstrMatch(str):
+class SubstrMatch(object):
+ def __init__(self, msg):
+ self.msg = msg
+
def __eq__(self, other):
- if self in other:
+ if self.msg in other:
return True
return False