Skip to content

Commit

Permalink
fix: use ping api instead of version api (frappe#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
revant authored Jul 24, 2023
1 parent eb0d632 commit 722dbd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_frappe_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def assets_cb(text: str):


@pytest.mark.parametrize(
("url", "callback"), (("/", index_cb), ("/api/method/version", api_cb))
("url", "callback"), (("/", index_cb), ("/api/method/ping", api_cb))
)
def test_endpoints(url: str, callback: Any, frappe_site: str):
check_url_content(
Expand Down

0 comments on commit 722dbd0

Please sign in to comment.