Merge branch 'master' of git+ssh://ctpug.org.za/naja
[naja.git] / naja / tests / test_actions.py
index bf04e21eacb9c4091c91a25fb3870d622f690c0f..8896b8d2607e72a6bc0ac034fba8b7f2a2a75f66 100644 (file)
@@ -10,10 +10,10 @@ class TestActions(TestCase):
 
     def test_DoNothing_check_available(self):
         player = self.make_player()
-        action = actions.DoNothing()
+        action = actions.DoNothing(set())
         self.assertEqual(action.check_available(player), True)
 
     def test_LoseHealthOrMSB_check_available(self):
         player = self.make_player()
-        action = actions.LoseHeathOrMSB()
+        action = actions.LoseHeathOrMSB(set())
         self.assertEqual(action.check_available(player), True)