summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd
diff options
context:
space:
mode:
authorDanil Alexeev <danil@alexeev.xyz>2024-08-28 17:41:52 +0300
committerDanil Alexeev <danil@alexeev.xyz>2024-08-28 17:41:52 +0300
commitc1322d41e6b48d9a957418cc20045cf6e4f79cd4 (patch)
tree38949a12c6b3ee3f59c980c3f0c0d55880848c68 /modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd
parentf648de1a83cf006dbfdaa075219ad4348628e58f (diff)
downloadredot-engine-c1322d41e6b48d9a957418cc20045cf6e4f79cd4.tar.gz
GDScript: Replace `assert()` with `Utils.check()` in tests
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd')
-rw-r--r--modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd b/modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd
index 2fa45c1d7d..0ec118b6b7 100644
--- a/modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd
+++ b/modules/gdscript/tests/scripts/parser/features/good_continue_in_lambda.gd
@@ -9,5 +9,5 @@ func test():
j_string += str(j)
return j_string
i_string += lambda.call()
- assert(i_string == '0202')
+ Utils.check(i_string == '0202')
print('ok')