diff --git a/huxley/api/tests/test_register.py b/huxley/api/tests/test_register.py index 62d6445d..624b5f4d 100644 --- a/huxley/api/tests/test_register.py +++ b/huxley/api/tests/test_register.py @@ -43,7 +43,7 @@ class RegisterTestCase(tests.CreateAPITestCase): }, }, 'registration': { - 'conference': 72, + 'conference': 73, 'num_beginner_delegates': 1, 'num_intermediate_delegates': 0, 'num_advanced_delegates': 0, @@ -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': '72', + 'conference': '73', 'num_beginner_delegates': 1, 'num_intermediate_delegates': 0, 'num_advanced_delegates': 0, diff --git a/huxley/core/fixtures/conference.json b/huxley/core/fixtures/conference.json index 52000cb4..cdffae4c 100644 --- a/huxley/core/fixtures/conference.json +++ b/huxley/core/fixtures/conference.json @@ -3,7 +3,7 @@ "pk": 1, "model": "core.conference", "fields": { - "session": 72, + "session": 73, "start_date": "2020-03-06", "end_date": "2020-03-08", "reg_open": "2019-09-01", diff --git a/huxley/settings/conference.py b/huxley/settings/conference.py index 60b0c092..9bfcd6b2 100644 --- a/huxley/settings/conference.py +++ b/huxley/settings/conference.py @@ -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 = 72 \ No newline at end of file +SESSION = 73 \ No newline at end of file