Remove left-over print statements from debugging

This commit is contained in:
Raphael Michel
2018-03-26 10:21:14 +02:00
parent 28a628ec93
commit 9ca61f9ef5
6 changed files with 2 additions and 7 deletions

View File

@@ -228,7 +228,6 @@ def test_checkins_list_filter(client, checkin_list_env, query, expected):
response = client.get('/control/event/dummy/dummy/checkinlists/{}/?'.format(checkin_list_env[6].pk) + query)
qs = response.context['entries']
item_keys = [q.order.code + str(q.item.name) for q in qs]
print([str(item.name) + '-' + str(item.id) for item in Item.objects.all()])
assert item_keys == expected