From a26df18796ff4e506b16bf32fcec9336233b9e2e Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Tue, 28 Jan 2025 19:12:09 -0500 Subject: New upstream version 1.28.5. --- test/test_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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): -- cgit v1.2.3