We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 939cf26 commit 47aba76Copy full SHA for 47aba76
ipyparallel/tests/test_util.py
@@ -14,7 +14,7 @@ def test_disambiguate_ip(warn_mock):
14
assert util.disambiguate_ip_address('0.0.0.0', socket.gethostname()) == localhost()
15
wontresolve = 'this.wontresolve.dns'
16
assert util.disambiguate_ip_address('0.0.0.0', wontresolve) == wontresolve
17
- assert warn_mock.called_once_with(
+ warn_mock.assert_called_once_with(
18
'IPython could not determine IPs for {}: '
19
'[Errno -2] Name or service not known'.format(wontresolve),
20
RuntimeWarning,
0 commit comments