X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Ftests%2Ftest_player.py;h=31cc8173395b53d7ae9a6147d06938a0e20cb6a9;hb=2a950900b3b7ae9514e5351c3a07903611b9153e;hp=cbae8cc23c03580a14f26f9f9043a90ba124b680;hpb=74d4017fa5fab71e17062e79399a38d039630a97;p=naja.git diff --git a/naja/tests/test_player.py b/naja/tests/test_player.py index cbae8cc..31cc817 100644 --- a/naja/tests/test_player.py +++ b/naja/tests/test_player.py @@ -161,9 +161,9 @@ class TestPlayer(TestCase): def test_legal_moves_all_available(self): player = Player(0x0f, (2, 2)) self.assertEqual( - player.legal_moves(), [(2, 1), (2, 3), (3, 2), (1, 2)]) + player.legal_moves(), [(2, 2), (2, 1), (2, 3), (3, 2), (1, 2)]) def test_legal_moves_some_unavailable(self): player = Player(0x0f, (0, 2)) player.bits.clear_bit(BITS.NORTH) - self.assertEqual(player.legal_moves(), [(0, 3), (1, 2)]) + self.assertEqual(player.legal_moves(), [(0, 2), (0, 3), (1, 2)])