summaryrefslogtreecommitdiff
path: root/yaksh/forms.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-09-01 17:59:39 +0530
committerGitHub2016-09-01 17:59:39 +0530
commit01e08dd15b59ce353043d541c9be81592cda3fe0 (patch)
treeba1a9f7ffee92b79262b83fa9eb6eed303550f98 /yaksh/forms.py
parent27e7a443ef132e04cc5aeece7a5bf34d0687f482 (diff)
parenta4b636508d572cbe00ae8d0336c7b30494bad4a6 (diff)
downloadonline_test-01e08dd15b59ce353043d541c9be81592cda3fe0.tar.gz
online_test-01e08dd15b59ce353043d541c9be81592cda3fe0.tar.bz2
online_test-01e08dd15b59ce353043d541c9be81592cda3fe0.zip
Merge pull request #105 from adityacp/stdin_stdout_evaluator
Stdin stdout evaluators
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r--yaksh/forms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py
index 1226fe2..4a20102 100644
--- a/yaksh/forms.py
+++ b/yaksh/forms.py
@@ -1,9 +1,9 @@
from django import forms
-from yaksh.models import get_model_class, Profile, Quiz, Question, TestCase, Course, StandardTestCase, StdoutBasedTestCase
+from yaksh.models import get_model_class, Profile, Quiz, Question, TestCase, Course, StandardTestCase, StdioBasedTestCase
from django.contrib.auth import authenticate
from django.contrib.auth.models import User
-from django.contrib.contenttypes.models import ContentType
+from django.contrib.contenttypes.models import ContentType
from taggit.managers import TaggableManager
from taggit.forms import TagField
@@ -33,7 +33,7 @@ question_types = (
test_case_types = (
("standardtestcase", "Standard Testcase"),
- ("stdoutbasedtestcase", "Stdout Based Testcase"),
+ ("stdiobasedtestcase", "Stdio Based Testcase"),
("mcqtestcase", "MCQ Testcase"),
)