(self, x, y, msg: Optional[str] = None, *, # type: ignore[override]
atol: Optional[float] = None, rtol: Optional[float] = None, **kwargs)
| 3487 | ) |
| 3488 | |
| 3489 | def assertNotEqual(self, x, y, msg: Optional[str] = None, *, # type: ignore[override] |
| 3490 | atol: Optional[float] = None, rtol: Optional[float] = None, **kwargs) -> None: |
| 3491 | with self.assertRaises(AssertionError, msg=msg): |
| 3492 | self.assertEqual(x, y, msg, atol=atol, rtol=rtol, **kwargs) |
| 3493 | |
| 3494 | def assertEqualTypeString(self, x, y) -> None: |
| 3495 | # This API is used simulate deprecated x.type() == y.type() |