Skip to content

Commit

Permalink
Fixed quickstart test
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun-m committed Oct 4, 2024
1 parent fe57407 commit d93e856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/light_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_quickstart():
command = [
"beam",
"deploy",
"app.py:run",
"app.py:hello_world",
"--name",
deployment_name,
]
Expand All @@ -91,7 +91,7 @@ def test_quickstart():
assert (
response.status_code == 200
), f"{test_name} request to endpoint failed with status code: {response.status_code}"
assert "success" in response.text, f"{test_name} unexpected response"
assert "task_id" in response.text, f"{test_name} unexpected response"
finally:
delete_deployments(deployment_name)
os.chdir(current_dir)
Expand Down

0 comments on commit d93e856

Please sign in to comment.