Commit d06778a9 by Mark L. Chang

fixed edX v. edx case in tests

parent a147acc4
...@@ -64,7 +64,7 @@ DATABASES = { ...@@ -64,7 +64,7 @@ DATABASES = {
'NAME': ENV_ROOT / "db" / "course1.db", 'NAME': ENV_ROOT / "db" / "course1.db",
}, },
'edx/full/6.002_Spring_2012': { 'edX/full/6.002_Spring_2012': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': ENV_ROOT / "db" / "course2.db", 'NAME': ENV_ROOT / "db" / "course2.db",
} }
......
...@@ -13,7 +13,7 @@ from nose.plugins.skip import SkipTest ...@@ -13,7 +13,7 @@ from nose.plugins.skip import SkipTest
from .models import User, UserProfile, CourseEnrollment, replicate_user, USER_FIELDS_TO_COPY from .models import User, UserProfile, CourseEnrollment, replicate_user, USER_FIELDS_TO_COPY
COURSE_1 = 'edX/toy/2012_Fall' COURSE_1 = 'edX/toy/2012_Fall'
COURSE_2 = 'edx/full/6.002_Spring_2012' COURSE_2 = 'edX/full/6.002_Spring_2012'
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
......
...@@ -85,7 +85,7 @@ DATABASES = { ...@@ -85,7 +85,7 @@ DATABASES = {
'NAME': ENV_ROOT / "db" / "course1.db", 'NAME': ENV_ROOT / "db" / "course1.db",
}, },
'edx/full/6.002_Spring_2012': { 'edX/full/6.002_Spring_2012': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': ENV_ROOT / "db" / "course2.db", 'NAME': ENV_ROOT / "db" / "course2.db",
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment