mirror of https://github.com/python/cpython
Suppress a couple more DeprecationWarnings in the test suite.
This commit is contained in:
parent
dbb7aa5bd1
commit
130a566a13
|
@ -91,7 +91,8 @@ class urlopenNetworkTests(unittest.TestCase):
|
||||||
# test getcode() with the fancy opener to get 404 error codes
|
# test getcode() with the fancy opener to get 404 error codes
|
||||||
URL = "http://www.example.com/XXXinvalidXXX"
|
URL = "http://www.example.com/XXXinvalidXXX"
|
||||||
with support.transient_internet(URL):
|
with support.transient_internet(URL):
|
||||||
open_url = urllib.request.FancyURLopener().open(URL)
|
with self.assertWarns(DeprecationWarning):
|
||||||
|
open_url = urllib.request.FancyURLopener().open(URL)
|
||||||
try:
|
try:
|
||||||
code = open_url.getcode()
|
code = open_url.getcode()
|
||||||
finally:
|
finally:
|
||||||
|
|
|
@ -1211,7 +1211,7 @@ class MockTest(unittest.TestCase):
|
||||||
m = Mock()
|
m = Mock()
|
||||||
m.hello(name='hello', daddy='hero')
|
m.hello(name='hello', daddy='hero')
|
||||||
text = "call(daddy='hero', name='hello')"
|
text = "call(daddy='hero', name='hello')"
|
||||||
self.assertEquals(repr(m.hello.call_args), text)
|
self.assertEqual(repr(m.hello.call_args), text)
|
||||||
|
|
||||||
def test_mock_add_spec(self):
|
def test_mock_add_spec(self):
|
||||||
class _One(object):
|
class _One(object):
|
||||||
|
|
Loading…
Reference in New Issue