Skip to content

Commit 739b799

Browse files
author
Pretty Taruvinga
committed
Co-authored-by: Isaac Abodunrin <bytesandroses@users.noreply.github.com> added an input
1 parent c1b088d commit 739b799

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sprint-1/implement/dedupe.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ test("Given a non-array value, when passed to the dedupe function, then it shoul
2424
});
2525

2626
test("Given an array with no duplicates, when passed to the dedupe function, then it should return a copy of the original array", () => {
27-
const input = ["a", "b", "c"];
28-
const copyOfInput = ["a", "b", "c"];
27+
const input = ["a", "b", "c", "d"];
28+
const copyOfInput = ["a", "b", "c", "d"];
2929

3030
const result = dedupe(input);
3131

0 commit comments

Comments
 (0)