Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using assertIs in unit tests where appropriate. (#3629)
* Using assertIs in unit tests where appropriate. Any usage of `self.assertTrue(a is b)` has become `self.assertIs(a, b)`. * Converting some assertFalse(a is b) to assertIsNot(a, b).
- Loading branch information