From 1d2070b987a1e71a42e208288053b6468f5a9736 Mon Sep 17 00:00:00 2001 From: Jeremy Thurgood Date: Wed, 14 May 2014 09:59:29 +0200 Subject: [PATCH] Fix tests. --- naja/tests/test_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/naja/tests/test_actions.py b/naja/tests/test_actions.py index fb2c370..fba7af7 100644 --- a/naja/tests/test_actions.py +++ b/naja/tests/test_actions.py @@ -10,7 +10,7 @@ class TestActions(TestCase): def make_player(self, *bits): player_bits = 0 for bit in bits: - player_bits |= bit + player_bits |= (1 << bit) return Player(player_bits, None) def make_board(self, player_bits=None, locations=None): -- 2.34.1