fix(curriculum): update tests for step 62 of pyramid project (#54509)

This commit is contained in:
Madison Powers
2024-04-25 14:43:40 -04:00
committed by GitHub
parent 7d8e3d78a1
commit 971d3e929b
@@ -23,13 +23,7 @@ Open up the console to see the result.
# --hints--
You should call `.repeat()` on your two `" "` strings.
```js
assert.lengthOf(code.match(/" ".repeat/g), 2);
```
Your `" "` strings should be repeated `rowCount - rowNumber` times.
You should call `.repeat()` on your `" "` strings to repeat them `rowCount - rowNumber` times.
```js
assert.equal(padRow(1, 3), " # ");