tests: update to match API change in "sold out" response code

This commit is contained in:
Frédéric Péters 2016-07-20 08:56:41 +02:00
parent e27c31583c
commit 7ab7a63c42
1 changed files with 3 additions and 2 deletions

View File

@ -141,7 +141,7 @@ def test_soldout(app, some_data, user):
assert not event.id in [x['id'] for x in resp.json['data']]
app.authorization = ('Basic', ('john.doe', 'password'))
resp = app.post('/api/agenda/%s/fillslot/%s/' % (agenda_id, event.id), status=400)
resp = app.post('/api/agenda/%s/fillslot/%s/' % (agenda_id, event.id), status=200)
assert resp.json['err'] == 1
assert resp.json['reason'] == 'sold out'
@ -215,8 +215,9 @@ def test_waiting_list_booking(app, some_data, user):
Booking(event=event, in_waiting_list=True).save()
app.authorization = ('Basic', ('john.doe', 'password'))
resp = app.post('/api/agenda/%s/fillslot/%s/' % (agenda_id, event.id), status=400)
resp = app.post('/api/agenda/%s/fillslot/%s/' % (agenda_id, event.id), status=200)
assert resp.json['err'] == 1
assert resp.json['reason'] == 'sold out'
def test_accept_booking(app, some_data, user):
agenda_id = Agenda.objects.filter(label=u'Foo bar')[0].id