change get_testcenter_registration to get_tc_registration, so it's not treated as a test.

This commit is contained in:
Brian Wilson
2013-01-18 14:52:36 -05:00
committed by Ashley Penney
parent d30974b560
commit 553528cd1c
5 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ from time import strftime
from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError
from student.models import TestCenterUser, TestCenterRegistration, TestCenterRegistrationForm, get_testcenter_registration
from student.models import TestCenterUser, TestCenterRegistration, TestCenterRegistrationForm, get_tc_registration
from student.views import course_from_id
from xmodule.course_module import CourseDescriptor
from xmodule.modulestore.exceptions import ItemNotFoundError
@@ -134,7 +134,7 @@ class Command(BaseCommand):
# create and save the registration:
needs_updating = False
registrations = get_testcenter_registration(student, course_id, exam_code)
registrations = get_tc_registration(student, course_id, exam_code)
if len(registrations) > 0:
registration = registrations[0]
for fieldname in UPDATE_FIELDS:
@@ -181,7 +181,7 @@ class Command(BaseCommand):
change_internal = False
if 'exam_series_code' in our_options:
exam_code = our_options['exam_series_code']
registration = get_testcenter_registration(student, course_id, exam_code)[0]
registration = get_tc_registration(student, course_id, exam_code)[0]
for internal_field in [ 'upload_error_message', 'upload_status', 'authorization_id']:
if internal_field in our_options:
registration.__setattr__(internal_field, our_options[internal_field])

View File

@@ -9,7 +9,7 @@ from django.test import TestCase
from student.models import User, TestCenterRegistration, TestCenterUser
# This is stupid! Because I import a function with the word "test" in the name,
# the unittest framework tries to run *it* as a test?! Crazy!
from student.models import get_testcenter_registration as get_tc_registration
from student.models import get_tc_registration
from django.core import management
log = logging.getLogger(__name__)

View File

@@ -547,7 +547,7 @@ class TestCenterRegistrationForm(ModelForm):
def get_testcenter_registration(user, course_id, exam_series_code):
def get_tc_registration(user, course_id, exam_series_code):
try:
tcu = TestCenterUser.objects.get(user=user)
except TestCenterUser.DoesNotExist:

View File

@@ -31,7 +31,7 @@ from student.models import (Registration, UserProfile, TestCenterUser, TestCente
TestCenterRegistration, TestCenterRegistrationForm,
PendingNameChange, PendingEmailChange,
CourseEnrollment, unique_id_for_user,
get_testcenter_registration)
get_tc_registration)
from certificates.models import CertificateStatuses, certificate_status_for_student
@@ -612,7 +612,7 @@ def exam_registration_info(user, course):
return None
exam_code = exam_info.exam_series_code
registrations = get_testcenter_registration(user, course.id, exam_code)
registrations = get_tc_registration(user, course.id, exam_code)
if registrations:
registration = registrations[0]
else:
@@ -712,7 +712,7 @@ def create_exam_registration(request, post_override=None):
needs_saving = False
exam = course.current_test_center_exam
exam_code = exam.exam_series_code
registrations = get_testcenter_registration(user, course_id, exam_code)
registrations = get_tc_registration(user, course_id, exam_code)
if registrations:
registration = registrations[0]
# NOTE: we do not bother to check here to see if the registration has changed,