From b0685c12c0fd137326475195867e5fdfdf72cbe7 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Tue, 4 Feb 2025 11:16:16 -0800 Subject: [PATCH] fix test message --- tests/integration/test_connection_banner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_connection_banner.py b/tests/integration/test_connection_banner.py index e6a8caef6..678fad777 100644 --- a/tests/integration/test_connection_banner.py +++ b/tests/integration/test_connection_banner.py @@ -120,7 +120,7 @@ def has_cloud_banner(driver: WebDriver) -> bool: """ try: driver.find_element( - By.XPATH, "//*[ contains(text(), 'You ran out of compute credits.') ]" + By.XPATH, "//*[ contains(text(), 'This app is paused') ]" ) except NoSuchElementException: return False