Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 72 #828

Merged
merged 3 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions huxley/api/tests/test_register.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class RegisterTestCase(tests.CreateAPITestCase):
},
},
'registration': {
'conference': 71,
'conference': 72,
'num_beginner_delegates': 1,
'num_intermediate_delegates': 0,
'num_advanced_delegates': 0,
Expand Down Expand Up @@ -203,7 +203,7 @@ def test_reg_invalid(self):
'''It does not create User and School model instances on an invalid
input for Registration and valid inputs for User and School.'''
params = self.get_params(registration={
'conference': '71',
'conference': '72',
'num_beginner_delegates': 1,
'num_intermediate_delegates': 0,
'num_advanced_delegates': 0,
Expand Down
2 changes: 1 addition & 1 deletion huxley/core/fixtures/conference.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"pk": 1,
"model": "core.conference",
"fields": {
"session": 71,
"session": 72,
"start_date": "2020-03-06",
"end_date": "2020-03-08",
"reg_open": "2019-09-01",
Expand Down
2 changes: 1 addition & 1 deletion huxley/settings/conference.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2011-2022 Berkeley Model United Nations. All rights reserved.
# Use of this source code is governed by a BSD License (see LICENSE).
SESSION = 71
SESSION = 72
Loading