Skip to content

Commit 2b360d3

Browse files
authored
Merge pull request #1148 from mstphayassin/bugfix/l22-pop-front
Fix: fixed lesson 22 part 1 check
2 parents 35a80ef + 83e12e7 commit 2b360d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

course/lesson-23-append-to-arrays/clearing-meals/TestClearingMeals.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ func _prepare() -> void:
88

99

1010
func test_used_pop_front() -> String:
11-
if not "waiting_orders.pop_front()" in _slice.current_text:
11+
if not "waiting_orders.pop_front" in _slice.current_text:
1212
return tr("We found no call to the pop_front() function. Did you forget to call it?")
1313
return ""
1414

0 commit comments

Comments
 (0)