test: fix operator start assertion
diff --git a/atmosphere/tests/e2e/test_operator.py b/atmosphere/tests/e2e/test_operator.py
index 149ca42..c4d9ddd 100644
--- a/atmosphere/tests/e2e/test_operator.py
+++ b/atmosphere/tests/e2e/test_operator.py
@@ -59,7 +59,7 @@
"-n", "openstack", "rollout", "status", "deployment/atmosphere-operator"
)
- for pod in pykube.Pod.objects(kind_cluster.api).filter(
+ for pod in pykube.Pod.objects(kind_cluster.api, namespace="openstack").filter(
selector="application=atmosphere"
):
assert "successfully started" in pod.logs()