tests: fix event order in api fillslot tests (#89598)
gitea/chrono/pipeline/head This commit looks good Details

This commit is contained in:
Yann Weber 2024-04-15 16:24:51 +02:00
parent 5a90c4851b
commit 0563e0642d
1 changed files with 2 additions and 2 deletions

View File

@ -711,7 +711,7 @@ def test_api_events_fillslots_with_lock_code(app, user, freezer):
'waiting_list_places': 1,
},
'Event 2': {
'start_datetime': now() + datetime.timedelta(days=1),
'start_datetime': now() + datetime.timedelta(days=2),
'places': 2,
'waiting_list_places': 1,
},
@ -807,7 +807,7 @@ def test_api_events_fillslots_with_lock_code_expiration(app, user, freezer):
'waiting_list_places': 1,
},
'Event 2': {
'start_datetime': now() + datetime.timedelta(days=1),
'start_datetime': now() + datetime.timedelta(days=2),
'places': 2,
'waiting_list_places': 1,
},