Skip to content

Proper C-style formatting for integer #913

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions zarr/tests/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -1151,8 +1151,8 @@ def s3(request):
pytest.importorskip("moto")

port = 5555
endpoint_uri = 'http://127.0.0.1:%s/' % port
proc = subprocess.Popen(shlex.split("moto_server s3 -p %s" % port),
endpoint_uri = 'http://127.0.0.1:%d/' % port
proc = subprocess.Popen(shlex.split("moto_server s3 -p %d" % port),
stderr=subprocess.DEVNULL, stdout=subprocess.DEVNULL)

timeout = 5
Expand Down