From 21956fdf725fd900fdb3f290f56db8ee7a0b4b51 Mon Sep 17 00:00:00 2001 From: rv0lt Date: Wed, 27 Sep 2023 13:59:20 +0200 Subject: [PATCH] tests --- tests/test_project_status.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_project_status.py b/tests/test_project_status.py index 3fc568d5..ee94688c 100644 --- a/tests/test_project_status.py +++ b/tests/test_project_status.py @@ -108,8 +108,7 @@ def test_archive_delete_project_no(capsys: CaptureFixture, monkeypatch, caplog: captured_output = captured_output.split("\n") assert ( - f"Are you sure you want to modify the status of {project_name}? All its contents will be deleted!" - in captured_output[0] + f"Are you sure you want to modify the status of {project_name}?" in captured_output[0] ) assert f"Title: {returned_response_get_info['Title']}" in captured_output[2] assert f"Description: {returned_response_get_info['Description']}" in captured_output[3]