Remove print statement

This commit is contained in:
Raphael Michel
2021-08-01 17:39:17 +02:00
parent b4bf5f998e
commit e42bc94329

View File

@@ -931,7 +931,6 @@ def test_question_choice_identifier(token_client, organizer, clist, event, order
resp = token_client.post('/api/v1/organizers/{}/events/{}/checkinlists/{}/positions/{}/redeem/'.format(
organizer.slug, event.slug, clist.pk, p.pk
), {'answers': {question[0].pk: str(question[1].identifier)}}, format='json')
print(resp.data)
assert resp.status_code == 201
assert resp.data['status'] == 'ok'
with scopes_disabled():