diff options
author | Prabhu Ramachandran | 2017-11-09 17:26:46 +0530 |
---|---|---|
committer | GitHub | 2017-11-09 17:26:46 +0530 |
commit | cfcb2ed39c724639fe17338e29e327d08ae641b2 (patch) | |
tree | 17bca625745b11d6152d9db1e9ebb49646d27d04 /yaksh/test_views.py | |
parent | e65b605e59c1384ad9607c99484107929248f220 (diff) | |
parent | 91de91014b24412f9ec5fe246235c38a00a778ec (diff) | |
download | online_test-cfcb2ed39c724639fe17338e29e327d08ae641b2.tar.gz online_test-cfcb2ed39c724639fe17338e29e327d08ae641b2.tar.bz2 online_test-cfcb2ed39c724639fe17338e29e327d08ae641b2.zip |
Merge pull request #379 from ankitjavalkar/better-installer-single-mount
Installation and Quickstart script using PyInvoke
Diffstat (limited to 'yaksh/test_views.py')
-rw-r--r-- | yaksh/test_views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/test_views.py b/yaksh/test_views.py index e3b0168..652f44c 100644 --- a/yaksh/test_views.py +++ b/yaksh/test_views.py @@ -23,7 +23,7 @@ from django.core.files.uploadedfile import SimpleUploadedFile from yaksh.models import User, Profile, Question, Quiz, QuestionPaper,\ QuestionSet, AnswerPaper, Answer, Course, StandardTestCase,\ AssignmentUpload, FileUpload, McqTestCase, IntegerTestCase, StringTestCase,\ - FloatTestCase + FloatTestCase, FIXTURES_DIR_PATH from yaksh.decorators import user_has_profile @@ -3201,7 +3201,7 @@ class TestShowQuestions(TestCase): username=self.user.username, password=self.user_plaintext_pass ) - ques_file = os.path.join(settings.FIXTURE_DIRS, "demo_questions.zip") + ques_file = os.path.join(FIXTURES_DIR_PATH, "demo_questions.zip") f = open(ques_file, 'rb') questions_file = SimpleUploadedFile(ques_file, f.read(), content_type="application/zip") |