summaryrefslogtreecommitdiff
path: root/yaksh/tests
diff options
context:
space:
mode:
authoradityacp2017-01-02 16:09:34 +0530
committeradityacp2017-01-02 16:09:34 +0530
commitc4f1fad41940acd3274d4559f820d9270a86450c (patch)
tree5052ba4084917f38d9a3c457999b68217e33d2fd /yaksh/tests
parent9235e68b3a41a5f5327a162662864d0f9a9b66b4 (diff)
downloadonline_test-c4f1fad41940acd3274d4559f820d9270a86450c.tar.gz
online_test-c4f1fad41940acd3274d4559f820d9270a86450c.tar.bz2
online_test-c4f1fad41940acd3274d4559f820d9270a86450c.zip
Fix test case for models and code server
Diffstat (limited to 'yaksh/tests')
-rw-r--r--yaksh/tests/test_code_server.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/yaksh/tests/test_code_server.py b/yaksh/tests/test_code_server.py
index 19698a5..47c1da7 100644
--- a/yaksh/tests/test_code_server.py
+++ b/yaksh/tests/test_code_server.py
@@ -49,7 +49,7 @@ class TestCodeServer(unittest.TestCase):
# When
result = self.code_server.run_code(
- 'python', 'standardtestcase', json.dumps(testdata), ''
+ 'python', json.dumps(testdata), ''
)
# Then
@@ -71,7 +71,7 @@ class TestCodeServer(unittest.TestCase):
# When
result = self.code_server.run_code(
- 'python', 'standardtestcase', json.dumps(testdata), ''
+ 'python', json.dumps(testdata), ''
)
# Then
@@ -92,7 +92,7 @@ class TestCodeServer(unittest.TestCase):
# When
result = self.code_server.run_code(
- 'python', 'standardtestcase', json.dumps(testdata), ''
+ 'python', json.dumps(testdata), ''
)
# Then
@@ -116,7 +116,7 @@ class TestCodeServer(unittest.TestCase):
}]
}
result = self.code_server.run_code(
- 'python', 'standardtestcase', json.dumps(testdata), ''
+ 'python', json.dumps(testdata), ''
)
results.put(json.loads(result))