diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-30 04:02:46 (GMT) |
---|---|---|
committer | Lisa Roach <lisaroach14@gmail.com> | 2019-09-30 04:02:46 (GMT) |
commit | b76ab352405df105c2d459fc66ef8dc98e47b37c (patch) | |
tree | 2707b356af9e659b94aa310280f7b33819d0c905 /Lib/unittest/test/testmock/testmagicmethods.py | |
parent | c9ed9e6fc76323ed537fb79d4232bcd27d82c57e (diff) | |
download | cpython-b76ab352405df105c2d459fc66ef8dc98e47b37c.zip cpython-b76ab352405df105c2d459fc66ef8dc98e47b37c.tar.gz cpython-b76ab352405df105c2d459fc66ef8dc98e47b37c.tar.bz2 |
bpo-38108: Makes mock objects inherit from Base (GH-16060) (GH-16470)
Diffstat (limited to 'Lib/unittest/test/testmock/testmagicmethods.py')
-rw-r--r-- | Lib/unittest/test/testmock/testmagicmethods.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/unittest/test/testmock/testmagicmethods.py b/Lib/unittest/test/testmock/testmagicmethods.py index 57f85e9..76b3a56 100644 --- a/Lib/unittest/test/testmock/testmagicmethods.py +++ b/Lib/unittest/test/testmock/testmagicmethods.py @@ -271,9 +271,6 @@ class TestMockingMagicMethods(unittest.TestCase): self.assertEqual(mock == mock, True) self.assertEqual(mock != mock, False) - - # This should be fixed with issue38163 - @unittest.expectedFailure def test_asyncmock_defaults(self): mock = AsyncMock() self.assertEqual(int(mock), 1) |