From 6674d3e0175762ce647eea55570dc2933c8420d5 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 19 Sep 2020 01:54:54 +0200 Subject: [PATCH] e2e: fix tests for proxy provider/outpost --- e2e/test_provider_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/test_provider_proxy.py b/e2e/test_provider_proxy.py index 617b65178..042a141ed 100644 --- a/e2e/test_provider_proxy.py +++ b/e2e/test_provider_proxy.py @@ -77,7 +77,7 @@ class TestProviderProxy(SeleniumTestCase): # Wait until outpost healthcheck succeeds healthcheck_retries = 0 while healthcheck_retries < 50: - if outpost.health: + if outpost.deployment_health: break healthcheck_retries += 1 sleep(0.5)