fix(curriculum): confirm not using unshift in Shopping List (#57687)

This commit is contained in:
Krzysztof G. 2024-12-22 19:16:44 +01:00 committed by GitHub
parent 2d135c548c
commit 53c107a5dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,7 @@ You should update the first item in the `shoppingList` array to be `"Canola Oil"
```js
assert.equal(shoppingList[0], "Canola Oil");
assert.notEqual(shoppingList[1], "Vegetable Oil");
```
# --seed--