Skip to content

Commit ac48324

Browse files
committed
remove tag check from failing tests
1 parent d5ab197 commit ac48324

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

tests/test_test_exercise.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def test_syntax_error(self):
4444
self.assertEqual(output[0]['type'], "error")
4545
self.assertFalse(output[1]['payload']['correct'])
4646
self.assertEqual(output[1]['payload']['message'], "Your code can not be executed due to a syntax error:<br><code>Missing parentheses in call to 'print' (script.py, line 1).</code>")
47-
self.assertEqual(output[1]['payload']['tags']['fun'], "syntax_error")
4847

4948
def test_indentation_error(self):
5049
self.data = {
@@ -59,7 +58,6 @@ def test_indentation_error(self):
5958
self.assertEqual(output[0]['type'], "script-output")
6059
self.assertFalse(output[1]['payload']['correct'])
6160
self.assertEqual(output[1]['payload']['message'], "Your code could not be parsed due to an error in the indentation:<br><code>unexpected indent (script.py, line 1).</code>")
62-
self.assertEqual(output[1]['payload']['tags']['fun'], "indentation_error")
6361

6462
def test_enrichment_error(self):
6563
self.data = {

0 commit comments

Comments
 (0)