From 1cc9c4d6f68b1b16747d9c66f8514c0824b21ecf Mon Sep 17 00:00:00 2001 From: rv0lt Date: Mon, 23 Oct 2023 12:56:31 +0200 Subject: [PATCH] test to match changes --- tests/api/test_project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/api/test_project.py b/tests/api/test_project.py index 3bfb18519..a1479eebc 100644 --- a/tests/api/test_project.py +++ b/tests/api/test_project.py @@ -1198,7 +1198,7 @@ def test_extend_deadline_when_busy(module_client, boto3_session): in response.json["message"] ) assert ( - "Please try again later. \n\nIf you know the project is not busy, contact support." + "Please try again later. \n\nIf you know that the project is not busy, contact support." in response.json["message"] ) @@ -1302,7 +1302,7 @@ def test_extend_deadline_bad_new_deadline(module_client, boto3_session): ) assert response.status_code == http.HTTPStatus.BAD_REQUEST assert ( - "The deadline atribute passed should be of type Int (i.e a number)." + "The deadline attribute passed should be of type Int (i.e a number)." in response.json["message"] )