Skip to content

Commit 008b464

Browse files
committed
lint
1 parent 1f247d7 commit 008b464

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_cli_estimate_cu.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ def test_cli_estimate_cu_tileset_with_sources(
9494
== f"\nEstimated CUs for '{tileset_id}': {msg['cu']}. To publish your tileset, run 'tilesets publish'.\n"
9595
)
9696

97+
9798
@pytest.mark.usefixtures("token_environ")
9899
@pytest.mark.usefixtures("api_environ")
99100
@mock.patch("requests.Session.get")
@@ -108,7 +109,10 @@ def test_cli_estimate_cu_tileset_with_zoom_overrides(
108109

109110
mock_request_get.return_value = MockResponse(msg)
110111
mock_glob.return_value = ["myfile.grib2"]
111-
result = runner.invoke(estimate_cu, [tileset_id, "-s", "/my/sources/*.grib2", "--minzoom", 1, "--maxzoom", 6])
112+
result = runner.invoke(
113+
estimate_cu,
114+
[tileset_id, "-s", "/my/sources/*.grib2", "--minzoom", 1, "--maxzoom", 6],
115+
)
112116
mock_request_get.assert_called_with(
113117
f"https://api.mapbox.com/tilesets/v1/{tileset_id}/estimate",
114118
params={

0 commit comments

Comments
 (0)