Skip to content

Commit

Permalink
fix batch upload syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Aug 5, 2024
1 parent 61683f4 commit ae4c26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_reserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_standard_module_conflict():
def test_batch_packages_names():
# test batch of package names
uploader = PyPIUploader(test_pypi_token, test_pypi=True)
assert uploader.batch_upload("numpy", "scikit-learn") == 0
assert uploader.batch_upload(["numpy", "scikit-learn"]) == 0

def test_valid_package_invalid_credentials():
# test not reserved name -> wrong credentials
Expand Down

0 comments on commit ae4c26c

Please sign in to comment.