Commit e987f019 by Sébastien Eustace

Fix tests

parent a6653843
...@@ -62,5 +62,5 @@ def test_publish_uses_token_if_it_exists(fixture_dir, mocker, config): ...@@ -62,5 +62,5 @@ def test_publish_uses_token_if_it_exists(fixture_dir, mocker, config):
publisher.publish(None, None, None) publisher.publish(None, None, None)
assert [("@token", "my-token")] == uploader_auth.call_args assert [("__token__", "my-token")] == uploader_auth.call_args
assert [("https://upload.pypi.org/legacy/",)] == uploader_upload.call_args assert [("https://upload.pypi.org/legacy/",)] == uploader_upload.call_args
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment