We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9280100 commit 0329b48Copy full SHA for 0329b48
tests/test_fmtstr.py
@@ -579,8 +579,8 @@ def test_oomerror(self):
579
class FormatStringTest(unittest.TestCase):
580
def assertFSArraysEqual(self, a, b):
581
# type: (FSArray, FSArray) -> None
582
- self.assertEqual(type(a), FSArray)
583
- self.assertEqual(type(b), FSArray)
+ self.assertIsInstance(a, FSArray)
+ self.assertIsInstance(b, FSArray)
584
self.assertEqual(
585
(a.width, b.height),
586
0 commit comments