fix(curriculum): correct arguments in hint (#53132)

This commit is contained in:
Lasse Jørgensen
2024-01-11 23:09:01 +01:00
committed by GitHub
parent 3084a6a29a
commit fd901a963a

View File

@@ -19,7 +19,7 @@ You should use the `includes` method to check if `uniqueNumbersStr` is included
assert.match(code, /if\s*\(\s*largeStraightsArr\.includes\(uniqueNumbersStr\)\s*\)\s*{?/);
```
You should call your `updateRadioOption` with `3` and `30` for the arguments.
You should call your `updateRadioOption` with `4` and `40` for the arguments.
```js
assert.match(code, /if\s*\(\s*largeStraightsArr\.includes\(uniqueNumbersStr\)\s*\)\s*{?\s*updateRadioOption\s*\(\s*4\s*,\s*40\s*\)\s*;?\s*}?/);