Skip to content

Instantly share code, notes, and snippets.

@mcsee
Created June 26, 2026 02:12
Show Gist options
  • Select an option

  • Save mcsee/884c02dbf47c13b9a70d46c0c42c3937 to your computer and use it in GitHub Desktop.

Select an option

Save mcsee/884c02dbf47c13b9a70d46c0c42c3937 to your computer and use it in GitHub Desktop.
Loop Iteration 4 - Test: group winner faces different group runner-up (knockout bracket)
def test_group_winner_faces_different_group_runner_up():
bracket = KnockoutBracket(completed_group_results)
round_of_32 = bracket.round_of_32()
assert round_of_32[0].home == group_e_standings.first_place()
assert round_of_32[0].away == group_f_standings.second_place()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment