NEO-122: Fix quest HUD controller test line length for gdlint.

pull/161/head
VinPropane 2026-06-07 13:37:43 -04:00
parent b3f9b22ef2
commit 2bf4d325e1
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ func test_progress_label_shows_loading_before_snapshot() -> void:
var controller: Node = QuestHudController.new()
var progress_label := Label.new()
add_child(controller)
controller.call("setup", QuestProgressClient.new(), QuestDefinitionsClient.new(), progress_label, Label.new(), Callable())
var progress := QuestProgressClient.new()
var defs := QuestDefinitionsClient.new()
controller.call("setup", progress, defs, progress_label, Label.new(), Callable())
await get_tree().process_frame
# Act
var text: String = progress_label.text