Skip to content

Commit 4aa0c39

Browse files
authored
Contains: Fix wrong boolean in test name (#618)
1 parent 3e34110 commit 4aa0c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

computer_science/recursion/2_contains/contains.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe("contains", () => {
5454
expect(contains(object, NaN)).toBe(true);
5555
});
5656

57-
test.skip("false if the provided value exists and is null", () => {
57+
test.skip("true if the provided value exists and is null", () => {
5858
expect(contains(object, null)).toBe(true);
5959
});
6060
});

0 commit comments

Comments
 (0)