fix(curriculum): fix test for step 71 of the music player lesson (#59724)

This commit is contained in:
dennmar
2025-04-17 10:14:13 -07:00
committed by GitHub
parent 2c436949f6
commit efb8d482fc

View File

@@ -16,7 +16,7 @@ Now you should see the song title and the artist show up in the display.
You should call the `setPlayerDisplay` function inside your `playSong` function.
```js
assert.match(code, /setPlayerDisplay\(\s*\)\s*;?/)
assert.match(__helpers.removeJSComments(code), /highlightCurrentSong\(\s*\)\s*(;|\n+)\s*setPlayerDisplay\(\s*\)\s*;?/)
```
# --seed--