aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:16 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:16 -0500
commit5a7d8217a6edc66e3cf25ca0eee6614a10fa866c (patch)
treea941825bf5fcf706f23b49e536edb9a2b26d5b6c /test
parente8f1b0d968a07cba884462e10718628394d1bae5 (diff)
parenta26df18796ff4e506b16bf32fcec9336233b9e2e (diff)
Update upstream source from tag 'upstream/1.28.5'
Update to upstream version '1.28.5' with Debian dir a2e4b8ba663c03c37256ad2b059b382999e473bc
Diffstat (limited to 'test')
-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):