flake8 all the things.
[naja.git] / naja / tests / test_gameboard.py
index 3bbf59bcf6e21d8cc916e37079c5a19eb04ebdbe..6231ac7750f96941d1bd40529890465ceb740772 100644 (file)
@@ -22,8 +22,8 @@ class TestGameBoard(TestCase):
 
     def test_export_new_board(self):
         board = GameBoard.new_game([{'actions': [{
-                'action_class': 'LoseHealthOrMSB',
-                'required_bits': [],
+            'action_class': 'LoseHealthOrMSB',
+            'required_bits': [],
         }]}])
         exported_state = board.export()
         board_locations = exported_state.pop('board_locations')
@@ -143,7 +143,6 @@ class TestGameBoard(TestCase):
         self.assertEqual(board.player.movement_mode, MOVES.CASTLE)
 
 
-
 class TestLocationCard(TestCase):
     def test_generate_bitwise_operand(self):
         # This is testing a random process, so it may fail occasionally.