From: Neil Date: Mon, 12 May 2014 09:05:44 +0000 (+0200) Subject: de-heath the tests X-Git-Tag: 0.1~358 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=5d31e52cd3ce4a577a7075b4fbba14923574f207 de-heath the tests --- 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)