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 b280242 commit 2a04f70Copy full SHA for 2a04f70
conflict_mediator/verify.py
@@ -27,4 +27,6 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
27
if script_file.read().strip() != 'print("Hello Everyone and World!")':
28
raise exercise.wrong_answer([MERGE_NOT_RESOLVED, RESET_MESSAGE])
29
30
- return exercise.to_output([], GitAutograderStatus.SUCCESSFUL)
+ return exercise.to_output(
31
+ ["Great work resolving the merge conflict!"], GitAutograderStatus.SUCCESSFUL
32
+ )
0 commit comments