From f2454cd934d734f13688933bc73b8343a51fe9bb Mon Sep 17 00:00:00 2001
From: fheinrich <fheinrich@techfak.uni-bielefeld.de>
Date: Tue, 30 Apr 2024 14:17:49 +0200
Subject: [PATCH] Auto stylecheck

---
 tests/test_counter.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/test_counter.py b/tests/test_counter.py
index 058a9e17..fab8a830 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?
-- 
GitLab