From be0faff90c3faa067f83626e867f7a702f81439b Mon Sep 17 00:00:00 2001 From: Seongjun Kim <66054861+sjwhole@users.noreply.github.com> Date: Wed, 29 Jan 2025 02:44:50 +0900 Subject: [PATCH] fix(curriculum): correct src property in music player step 6 test feedback (#58439) --- .../65606ed6ea2baca053327e9b.md | 2 +- .../workshop-music-player/674728eda5829d7b4c360643.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65606ed6ea2baca053327e9b.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65606ed6ea2baca053327e9b.md index dca6971ea70..3a7dd17b005 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65606ed6ea2baca053327e9b.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-basic-string-and-array-methods-by-building-a-music-player/65606ed6ea2baca053327e9b.md @@ -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"); diff --git a/curriculum/challenges/english/25-front-end-development/workshop-music-player/674728eda5829d7b4c360643.md b/curriculum/challenges/english/25-front-end-development/workshop-music-player/674728eda5829d7b4c360643.md index d4725a42a59..60faf747360 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-music-player/674728eda5829d7b4c360643.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-music-player/674728eda5829d7b4c360643.md @@ -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");