Skip to content

Commit

Permalink
Update test_checker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 14, 2024
1 parent 559dd22 commit 4ddc7c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kyu_5/tic_tac_toe_checker/test_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ class IsSolvedTestCase(unittest.TestCase):

@parameterized.expand([
([[0, 0, 1],
[0, 1, 2],
[2, 1, 0]], -1, 'not yet finished'),
[0, 1, 2],
[2, 1, 0]], -1, 'not yet finished'),
([[1, 1, 1],
[0, 2, 2],
[0, 2, 2],
[0, 0, 0]], 1, 'winning row'),
([[2, 1, 2],
[2, 1, 1],
Expand Down

0 comments on commit 4ddc7c7

Please sign in to comment.