Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
hrodmn committed Nov 26, 2024
1 parent 4bfe7cb commit 4f443aa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def get_info_test(app, ds_params):
params=ds_params["params"],
)
assert response.status_code == 200
print(json.dumps(response.json(), indent=2))
expectation_fn = f"{ds_params['params']['url'].replace(DATA_DIR, f'{DATA_DIR}/responses').replace('.', '_')}_info.json"
with open(
expectation_fn,
Expand Down Expand Up @@ -104,9 +103,7 @@ def get_tilejson_test(app, ds_params):
params=ds_params["params"],
)
assert response.status_code == 200
print(json.dumps(response.json(), indent=2))
expectation_fn = f"{ds_params['params']['url'].replace(DATA_DIR, f'{DATA_DIR}/responses').replace('.', '_')}_tilejson.json"
print(expectation_fn)
with open(
expectation_fn,
"r",
Expand Down

0 comments on commit 4f443aa

Please sign in to comment.