-
Alex Willmer authored
e.g. assert x == y -> self.assertEqual(x, y); self.assertTrue(isinstance(x, y)) -> self.assertIsInstance(x, y) These specific methods give more useful errors in the case of a test failure.
e8e023ce
e.g. assert x == y -> self.assertEqual(x, y); self.assertTrue(isinstance(x, y)) -> self.assertIsInstance(x, y) These specific methods give more useful errors in the case of a test failure.