Skip to content

Commit

Permalink
Accept any extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Nov 27, 2024
1 parent 1d6511f commit 38acd93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_post_images(expect, url):
params = {"template_id": "iw", "text_lines": ["test", "deployment"]}
response = requests.post(f"{url}/images", json=params)
expect(response.status_code) == 201
expect(response.json()["url"]).endswith("/images/iw/test/deployment.png")
expect(response.json()["url"]).contains("/images/iw/test/deployment.")


def test_get_examples(expect, url):
Expand Down

0 comments on commit 38acd93

Please sign in to comment.