diff --git a/tests/test_routes/test_comment.py b/tests/test_routes/test_comment.py index d093d92..c891640 100644 --- a/tests/test_routes/test_comment.py +++ b/tests/test_routes/test_comment.py @@ -77,19 +77,6 @@ 3, status.HTTP_404_NOT_FOUND, ), - ( - { - "subject": "test_subject", - "text": "test_text", - "create_ts": "2077-11-16T19:15:27.306Z", - "update_ts": "2077-11-16T19:15:27.306Z", - "mark_kindness": 1, - "mark_freebie": -2, - "mark_clarity": 0, - }, - 0, - status.HTTP_200_OK, - ), ( # Anonymous comment { "subject": "test_subject", @@ -102,18 +89,6 @@ 0, status.HTTP_200_OK, ), - ( - { - "subject": "test_subject", - "text": "test_text", - "update_ts": "2077-11-16T19:15:27.306Z", - "mark_kindness": 1, - "mark_freebie": -2, - "mark_clarity": 0, - }, - 0, - status.HTTP_200_OK, - ), ( # NotAnonymous comment { "subject": "test_subject", @@ -126,30 +101,6 @@ 0, status.HTTP_200_OK, ), - ( - { - "subject": "test_subject", - "text": "test_text", - "create_ts": "2077-11-16T19:15:27.306Z", - "mark_kindness": 1, - "mark_freebie": -2, - "mark_clarity": 0, - }, - 0, - status.HTTP_200_OK, - ), - ( # wrong date - { - "subject": "test_subject", - "text": "test_text", - "create_ts": "wasd", - "mark_kindness": 1, - "mark_freebie": -2, - "mark_clarity": 0, - }, - 0, - status.HTTP_422_UNPROCESSABLE_ENTITY, - ), ( # Bad anonymity { "subject": "test_subject",