From 5d31e52cd3ce4a577a7075b4fbba14923574f207 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 12 May 2014 11:05:44 +0200 Subject: [PATCH] de-heath the tests --- naja/tests/test_actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.34.1