aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_apis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_apis.py b/tests/test_apis.py
index a7d6685..7a0147a 100644
--- a/tests/test_apis.py
+++ b/tests/test_apis.py
@@ -422,7 +422,7 @@ class testAtomicString(unittest.TestCase):
class TestConfigParsing(unittest.TestCase):
def assertParses(self, value, result):
- self.assertIs(markdown.util.parseBoolValue(value, False), result)
+ self.assertTrue(markdown.util.parseBoolValue(value, False) is result)
def testBooleansParsing(self):
self.assertParses(True, True)