From fc9d2f1dc7d8272565ac02a4680452ade998f86e Mon Sep 17 00:00:00 2001 From: M Bernt Date: Mon, 16 Sep 2024 15:12:23 +0200 Subject: [PATCH] remove assert Co-authored-by: Marius van den Beek --- test/integration/test_quota.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/integration/test_quota.py b/test/integration/test_quota.py index 07c4a0fea936..0debde6ac627 100644 --- a/test/integration/test_quota.py +++ b/test/integration/test_quota.py @@ -98,7 +98,6 @@ def test_update_description(self): } put_response = self._put(f"quotas/{quota_id}", data=update_payload, json=True) put_response.raise_for_status() - assert "has been renamed to" in put_response.text show_response = self._get(f"quotas/{quota_id}") show_response.raise_for_status()