diff --git a/tests/test_counter.py b/tests/test_counter.py
index 058a9e17ad95f1365e0dc5be6aec76ecdfa80a3e..fab8a8304e13b2359d5bae0079a09fed98cc9979 100644
--- a/tests/test_counter.py
+++ b/tests/test_counter.py
@@ -57,7 +57,7 @@ def test_serving_window():
     ), "ServingWindow should return the item for not ordered meals."
 
     assert (
-        serving_window.pick_up() is None
+            serving_window.pick_up() is None
     ), "Player should not be able to pick something from the ServingWindow."
 
 
@@ -78,7 +78,7 @@ def test_dispenser():
         dispenser.occupied_by.name == "MyIngredient"
     ), "Initialized dispenser should be occupied by dispensing item"
     assert (
-        dispenser.pick_up().name == "MyIngredient"
+            dispenser.pick_up().name == "MyIngredient"
     ), "Picked up item should be the dispensing item"
     assert (
         dispenser.occupied_by is not None
@@ -96,6 +96,6 @@ def test_dispenser():
         dispenser.pick_up()
     ), "Config undo_dispenser_pickup==True should allow the player to drop off picked up items"
     assert (
-        dispenser.drop_off(dispenser.pick_up()) is None
+            dispenser.drop_off(dispenser.pick_up()) is None
     ), "Config undo_dispenser_pickup==True should allow the player to drop off picked up items"
     # check combine?