diff --git a/program/tests/test_notes.py b/program/tests/test_notes.py index 08a13d3017354d89194676d462b606fa46d13a33..3dd85fb063be01d086f75888287bccaf453dd597 100644 --- a/program/tests/test_notes.py +++ b/program/tests/test_notes.py @@ -69,7 +69,6 @@ class NoteViewTestCase(tests.BaseMixin, APITransactionTestCase): self._create_random_note_content(timeslot_id=timeslot.id), format="json", ) - print(res.content) self.assertEqual(res.status_code, 201) def test_notes_can_be_created_through_nested_routes(self): @@ -79,9 +78,7 @@ class NoteViewTestCase(tests.BaseMixin, APITransactionTestCase): ts1 = self._create_timeslot(schedule=self.schedule_musikrotation) url = self._url("shows", self.show_musikrotation.id, "notes") note = self._create_random_note_content(title="meh", timeslot_id=ts1.id) - print(note) res = client.post(url, note, format="json") - print(res.content) self.assertEqual(res.status_code, 201) # /shows/{pk}/timeslots/{pk}/note/