From bbfa761aee6affe0c19114bd925fa6f1aa0da9fb Mon Sep 17 00:00:00 2001 From: VinPropane Date: Mon, 27 Apr 2026 22:15:00 -0400 Subject: [PATCH] NEO-28: gdformat ability_cast_client_test.gd after connect() wrap. --- client/test/ability_cast_client_test.gd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/test/ability_cast_client_test.gd b/client/test/ability_cast_client_test.gd index 25df6b7..7c62429 100644 --- a/client/test/ability_cast_client_test.gd +++ b/client/test/ability_cast_client_test.gd @@ -151,8 +151,7 @@ func test_cast_result_received_emits_false_with_reason_on_denied() -> void: var got: Array = [] c.connect( "cast_result_received", - func(accepted: bool, reason: String) -> void: - got.append([accepted, reason]) + func(accepted: bool, reason: String) -> void: got.append([accepted, reason]) ) # Act var started: bool = bool(c.call("request_cast", 0, "prototype_pulse", "prototype_target_alpha")) @@ -171,8 +170,7 @@ func test_cast_result_received_emits_true_with_empty_reason_on_accepted() -> voi var got: Array = [] c.connect( "cast_result_received", - func(accepted: bool, reason: String) -> void: - got.append([accepted, reason]) + func(accepted: bool, reason: String) -> void: got.append([accepted, reason]) ) # Act var started: bool = bool(c.call("request_cast", 0, "prototype_pulse", null))