From bfded69b3bceefd899dac51231784c4a7f6effbe Mon Sep 17 00:00:00 2001 From: VinPropane Date: Sun, 7 Jun 2026 14:42:45 -0400 Subject: [PATCH] NEO-122: gdformat quest_hud_controller_test.gd. --- client/test/quest_hud_controller_test.gd | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/test/quest_hud_controller_test.gd b/client/test/quest_hud_controller_test.gd index 83946f2..e919628 100644 --- a/client/test/quest_hud_controller_test.gd +++ b/client/test/quest_hud_controller_test.gd @@ -190,9 +190,7 @@ func test_request_accept_shows_busy_feedback() -> void: var accept_label: Label = built["accept_label"] controller.call("_request_accept", QuestHudController.GATHER_QUEST_ID) # Act - var started: bool = bool( - controller.call("_request_accept", QuestHudController.GATHER_QUEST_ID) - ) + var started: bool = bool(controller.call("_request_accept", QuestHudController.GATHER_QUEST_ID)) # Assert assert_bool(started).is_false() assert_str(accept_label.text).contains("busy")