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 d7f0a2f commit dc963a0Copy full SHA for dc963a0
branch_bender/verify.py
@@ -26,9 +26,11 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
26
except TypeError:
27
raise exercise.wrong_answer([DETACHED_HEAD])
28
29
+ main_reflog = main_branch.reflog
30
+ print(main_reflog)
31
+
32
try:
33
# Merge commits exhibit the behavior of having 2 parents (from/to)
- main_reflog = main_branch.reflog[::-1]
34
expected_order = ["feature/payments", "feature/dashboard", "feature/login"][
35
::-1
36
]
0 commit comments