X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Ftests%2Ftest_actions.py;h=5fe07be4892406f0185ad78153fd3f4b45da282e;hb=5d31e52cd3ce4a577a7075b4fbba14923574f207;hp=69ed8819ed54c80be1d87e89fe6eef8f931f931b;hpb=2208db6c69d2dbf05dfd65772a01da2af6553172;p=naja.git diff --git a/naja/tests/test_actions.py b/naja/tests/test_actions.py index 69ed881..5fe07be 100644 --- a/naja/tests/test_actions.py +++ b/naja/tests/test_actions.py @@ -42,7 +42,7 @@ class TestActions(TestCase): def test_LoseHealthOrMSB_MSB_clear(self): board = self.make_board() state_before = board.export() - actions.LoseHeathOrMSB(set()).perform_action(board, None) + actions.LoseHealthOrMSB(set()).perform_action(board, None) state_after = board.export() self.assertEqual(state_after['health'], state_before['health'] - 1) @@ -53,7 +53,7 @@ class TestActions(TestCase): def test_LoseHealthOrMSB_MSB_set(self): board = self.make_board(player_bits=[BITS.MSB]) state_before = board.export() - actions.LoseHeathOrMSB(set()).perform_action(board, None) + actions.LoseHealthOrMSB(set()).perform_action(board, None) state_after = board.export() self.assertEqual(board.player.bits.check_bit(BITS.MSB), False)