From f5e50b1f6b3d5e9f5d4c74fd32ac536e46143804 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Mon, 15 Apr 2024 21:52:42 +0200 Subject: [PATCH] Fix core.gd unit test --- tests/unit/core.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/core.gd b/tests/unit/core.gd index aad8220..b4e579a 100644 --- a/tests/unit/core.gd +++ b/tests/unit/core.gd @@ -90,8 +90,8 @@ func test_reload_config() -> void: await wait_process_time() # Check config - if core.config != config: - rerror("Got invalid node from config variable") + if core.config == config: + rerror("Configuration matches local config") return # Check config in modules