From 160a9e18025dd4d280d7b54f45a0c32b85afcd5d Mon Sep 17 00:00:00 2001
From: Raniere Silva <raniere@rgaiacs.com>
Date: Thu, 23 Jan 2025 10:02:01 +0100
Subject: [PATCH] Re-write test_proxy_page() the simplest way possible

Related to https://github.com/jupyterhub/mybinder.org-deploy/issues/3188
---
 tests/test_federation_redirect.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_federation_redirect.py b/tests/test_federation_redirect.py
index e994abe24..c2c3a5a82 100644
--- a/tests/test_federation_redirect.py
+++ b/tests/test_federation_redirect.py
@@ -13,4 +13,4 @@ def test_active_hosts(helm_config, federation_url):
 def test_proxy_page(helm_config, federation_url):
     r = requests.get(federation_url)
     r.raise_for_status()
-    assert "How it works" in r.text
+    assert '<div id="root"></div>' in r.text