From 444fb2abccda3ab60890f05c00834d37d21a053d Mon Sep 17 00:00:00 2001 From: GsLogiMaker Date: Thu, 9 Jan 2025 23:56:35 -0600 Subject: [PATCH] Fix test error in `test_entities.gd` --- unittests/test_entities.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/test_entities.gd b/unittests/test_entities.gd index a5d053d..e03578d 100644 --- a/unittests/test_entities.gd +++ b/unittests/test_entities.gd @@ -3,10 +3,10 @@ extends GutTest var world:GFWorld = null -func before_all(): +func before_each(): world = GFWorld.new() -func after_all(): +func after_each(): world.free() #region Tests