Skip to content

Commit 1acdfcc

Browse files
committedFeb 8, 2022
Fix palindromes false positive test
1 parent 82db5ea commit 1acdfcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎09_palindromes/palindromes.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ describe('palindromes', () => {
1717
expect(palindromes('Animal loots foliated detail of stool lamina.')).toBe(true);
1818
});
1919
test.skip('doesn\'t just always return true', () => {
20-
expect(palindromes('ZZZZ car, a man, a maraca.')).toBe(false);
20+
expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false);
2121
});
2222
});

0 commit comments

Comments
 (0)
Please sign in to comment.