Skip to content

Commit f1532f2

Browse files
committed
fixed array-core-operations exercise 4 test scenario
1 parent 84d2e87 commit f1532f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/sections/04-arrays-and-two-pointers/03-array-core-operations

src/sections/04-arrays-and-two-pointers/03-array-core-operations/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const tests = [
128128
return { passed: false, message: "removeSongStrategically function not found. Make sure to uncomment and implement it." };
129129
}
130130

131-
const expectedArray = [];
131+
const expectedArray = ["C"];
132132
const expectedRemoved = ["D", "A", "B"];
133133

134134
if (JSON.stringify(testResult.result) !== JSON.stringify(expectedArray)) {

0 commit comments

Comments
 (0)