summaryrefslogtreecommitdiffstats
path: root/test/test_results.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_results.py')
-rw-r--r--test/test_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_results.py b/test/test_results.py
index f36f798..c3b9b2d 100644
--- a/test/test_results.py
+++ b/test/test_results.py
@@ -237,7 +237,7 @@ class TestExtractorResults(unittest.TestCase):
elif isinstance(test, range):
self.assertRange(value, test, msg=path)
elif isinstance(test, set):
- self.assertIn(value, test, msg=path)
+ self.assertTrue(value in test or type(value) in test, msg=path)
elif isinstance(test, list):
subtest = False
for idx, item in enumerate(test):