diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-07-13 00:20:14 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2018-07-13 00:20:14 -0400 |
commit | f90944775adb861d8de98026be4864e488be9c15 (patch) | |
tree | 7818ba4766c84c1dc6cfd0074b0b58c059bfbad2 | |
parent | e9bdeda02a1be80d295aa8e4b068e4844141512b (diff) | |
download | external_python_setuptools-f90944775adb861d8de98026be4864e488be9c15.tar.gz external_python_setuptools-f90944775adb861d8de98026be4864e488be9c15.tar.bz2 external_python_setuptools-f90944775adb861d8de98026be4864e488be9c15.zip |
Relax overfitted test. Fixes #1425.
-rw-r--r-- | setuptools/tests/test_register.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_register.py b/setuptools/tests/test_register.py index 92d576db..96114595 100644 --- a/setuptools/tests/test_register.py +++ b/setuptools/tests/test_register.py @@ -18,7 +18,7 @@ class TestRegisterTest: cmd.run() - cmd.announce.assert_called_once_with( + cmd.announce.assert_called_with( "WARNING: Registering is deprecated, use twine to upload instead " "(https://pypi.org/p/twine/)", log.WARN @@ -36,7 +36,7 @@ class TestRegisterTest: with pytest.raises(Exception): cmd.run() - cmd.announce.assert_called_once_with( + cmd.announce.assert_called_with( "WARNING: Registering is deprecated, use twine to upload instead " "(https://pypi.org/p/twine/)", log.WARN |