Skip to content

Commit dc963a0

Browse files
committed
[branch-bender] Logging
1 parent d7f0a2f commit dc963a0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

branch_bender/verify.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
2626
except TypeError:
2727
raise exercise.wrong_answer([DETACHED_HEAD])
2828

29+
main_reflog = main_branch.reflog
30+
print(main_reflog)
31+
2932
try:
3033
# Merge commits exhibit the behavior of having 2 parents (from/to)
31-
main_reflog = main_branch.reflog[::-1]
3234
expected_order = ["feature/payments", "feature/dashboard", "feature/login"][
3335
::-1
3436
]

0 commit comments

Comments
 (0)