Skip to content

Commit

Permalink
Fix URL test failure
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Torrey <jacob@thinkst.com>
  • Loading branch information
ranok committed Jan 24, 2024
1 parent ec8e732 commit 6bb7397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/units/test_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_get_generate_page(test_client: TestClient) -> None:
def test_redirect_base_to_generate(test_client: TestClient) -> None:
response = test_client.get("/")
assert response.status_code == 200
assert response.url.split("/")[-1] == "generate"
assert response.url.path == "/generate"


def test_generate_dns_token(test_client: TestClient) -> None:
Expand Down

0 comments on commit 6bb7397

Please sign in to comment.