diff options
Diffstat (limited to 'k8s/tests')
-rw-r--r-- | k8s/tests/test_tasks.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/k8s/tests/test_tasks.py b/k8s/tests/test_tasks.py index 69e866d..948489a 100644 --- a/k8s/tests/test_tasks.py +++ b/k8s/tests/test_tasks.py @@ -208,8 +208,7 @@ def test_verify_container(monkeypatch, mockconfig): monkeypatch.setattr(k8sclient, "is_available", fake_is_available_never_good) - with pytest.raises(DockerPluginDeploymentError): - tasks._verify_k8s_deployment("some-name", 2) + assert not tasks._verify_k8s_deployment("some-name", 2) def test_update_delivery_url(monkeypatch, mockconfig): |