We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c5697 commit f3b4f5dCopy full SHA for f3b4f5d
conflict_mediator/verify.py
@@ -24,7 +24,10 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
24
raise exercise.wrong_answer([DETACHED_HEAD])
25
26
with exercise.repo.files.file("script.py") as script_file:
27
- if script_file.read().strip() != 'print("Hello Everyone and World!")':
+ if (
28
+ script_file.read().strip() != 'print("Hello Everyone and World!")'
29
+ and script_file.read().strip() != "print('Hello Everyone and World!')"
30
+ ):
31
raise exercise.wrong_answer([MERGE_NOT_RESOLVED, RESET_MESSAGE])
32
33
return exercise.to_output(
0 commit comments