From 811dd63dd445eb571cd845479ccc682f858f3559 Mon Sep 17 00:00:00 2001 From: louiseschmidtgen Date: Thu, 13 Jun 2024 13:06:54 +0200 Subject: [PATCH] little typo --- tests/integration/tests/test_ingress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/tests/test_ingress.py b/tests/integration/tests/test_ingress.py index cf65120a0..7a114273b 100644 --- a/tests/integration/tests/test_ingress.py +++ b/tests/integration/tests/test_ingress.py @@ -34,7 +34,7 @@ def test_ingress(session_instance: List[harness.Instance]): util.stubbornly(retries=15, delay_s=2).on(session_instance).until( lambda p: "ck-ingress" in p.stdout.decode() ).exec(["k8s", "kubectl", "get", "ingressclass", "ck-ingress", "-o", "json"]) - LOG.INFO("Ingress class showed up.") + LOG.info("Ingress class showed up.") ingress_http_port = None services = json.loads(p.stdout.decode())