From e82912e53620abc450ddde9ef44a62787bc65c8c Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Wed, 17 Jul 2024 17:56:32 -0400 Subject: [PATCH] fix: remove left over print --- program/tests/test_schedules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/tests/test_schedules.py b/program/tests/test_schedules.py index a7185f01..0416a0f5 100644 --- a/program/tests/test_schedules.py +++ b/program/tests/test_schedules.py @@ -240,7 +240,7 @@ def test_patch_set_is_repetition_true(admin_api_client, once_schedule): update = {"is_repetition": "true"} response = admin_api_client.patch(url(schedule=once_schedule), data=update) - print(response.request.items()) + assert response.status_code == 200 assert response.data["is_repetition"] is True -- GitLab