From 1acdfccb5d991b1c106ff3281d5afaaa8a93c433 Mon Sep 17 00:00:00 2001 From: Mclilzee Date: Tue, 8 Feb 2022 20:52:06 +0100 Subject: [PATCH] Fix palindromes false positive test --- 09_palindromes/palindromes.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09_palindromes/palindromes.spec.js b/09_palindromes/palindromes.spec.js index 2f239d3..6e14ed1 100644 --- a/09_palindromes/palindromes.spec.js +++ b/09_palindromes/palindromes.spec.js @@ -17,6 +17,6 @@ describe('palindromes', () => { expect(palindromes('Animal loots foliated detail of stool lamina.')).toBe(true); }); test.skip('doesn\'t just always return true', () => { - expect(palindromes('ZZZZ car, a man, a maraca.')).toBe(false); + expect(palindromes('ZZZZ car, a man, a maracaz.')).toBe(false); }); });