Skip to content

Commit 2a04f70

Browse files
committed
[conflict-mediator] Add success message
1 parent b280242 commit 2a04f70

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

conflict_mediator/verify.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
2727
if script_file.read().strip() != 'print("Hello Everyone and World!")':
2828
raise exercise.wrong_answer([MERGE_NOT_RESOLVED, RESET_MESSAGE])
2929

30-
return exercise.to_output([], GitAutograderStatus.SUCCESSFUL)
30+
return exercise.to_output(
31+
["Great work resolving the merge conflict!"], GitAutograderStatus.SUCCESSFUL
32+
)

0 commit comments

Comments
 (0)