fix(curriculum): correct src property in music player step 6 test feedback (#58439)

This commit is contained in:
Seongjun Kim
2025-01-29 02:44:50 +09:00
committed by GitHub
parent 63dc0d81aa
commit be0faff90c
2 changed files with 2 additions and 2 deletions
@@ -49,7 +49,7 @@ The third object in your `allSongs` array should have a `duration` property set
assert.equal(allSongs[2].duration, "3:51");
```
The third object in your `allSongs` array should have a `src` property set to the string `"https://cdn.freecodecamp.org/curriculum/js-music-player/can't-stay-down.mp3"`.
The third object in your `allSongs` array should have a `src` property set to the string `"https://cdn.freecodecamp.org/curriculum/js-music-player/still-learning.mp3"`.
```js
assert.equal(allSongs[2].src, "https://cdn.freecodecamp.org/curriculum/js-music-player/still-learning.mp3");
@@ -49,7 +49,7 @@ The third object in your `allSongs` array should have a `duration` property set
assert.equal(allSongs[2].duration, "3:51");
```
The third object in your `allSongs` array should have a `src` property set to the string `"https://cdn.freecodecamp.org/curriculum/js-music-player/can't-stay-down.mp3"`.
The third object in your `allSongs` array should have a `src` property set to the string `"https://cdn.freecodecamp.org/curriculum/js-music-player/still-learning.mp3"`.
```js
assert.equal(allSongs[2].src, "https://cdn.freecodecamp.org/curriculum/js-music-player/still-learning.mp3");