mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): correct src property in music player step 6 test feedback (#58439)
This commit is contained in:
+1
-1
@@ -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");
|
||||
|
||||
+1
-1
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user