From 83e26677e2c2b4effbfc885dd1e1ceb7b7306cc0 Mon Sep 17 00:00:00 2001 From: redruin1 Date: Mon, 6 Jan 2025 17:17:10 -0500 Subject: [PATCH] typo in test --- test/test_entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_entity.py b/test/test_entity.py index bd17cc6..85ee1a8 100644 --- a/test/test_entity.py +++ b/test/test_entity.py @@ -56,7 +56,7 @@ def test_get_world_bounding_box(self): combinator = DeciderCombinator(tile_position=[3, 3], direction=Direction.EAST) assert combinator.get_world_bounding_box() == AABB(3.35, 3.15, 4.65, 3.85) recycler = new_entity('recycler',tile_position=[3, 3], direction=Direction.EAST) - assert recycler.get_world_bounding_box() == AABB(3,3, 3.3, 6.7, 4.7) + assert recycler.get_world_bounding_box() == AABB(3.3, 3.3, 6.7, 4.7) def test_set_name(self): iron_chest = Container("iron-chest")