Skip to content

Commit

Permalink
Remove about handler test
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Nov 27, 2024
1 parent d92e6b7 commit 85113b0
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions binderhub/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,6 @@ async def test_main_page(app):
assert r.status_code == 200, f"{r.status_code} {url}"


@pytest.mark.remote
async def test_about_handler(app):
# Check that the about page loads
r = await async_requests.get(app.url + "/about")
assert r.status_code == 200
assert "This website is powered by" in r.text
assert binder_version.split("+")[0] in r.text


@pytest.mark.remote
async def test_versions_handler(app):
# Check that the about page loads
Expand Down

0 comments on commit 85113b0

Please sign in to comment.