Created
June 26, 2026 02:12
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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