diff --git a/technical-fundamentals/coding/problems/__tests__/strings/04_palindromePermutation.test.ts b/technical-fundamentals/coding/problems/__tests__/strings/04_palindromePermutation.test.ts index b90dbf0c..dfa631d6 100644 --- a/technical-fundamentals/coding/problems/__tests__/strings/04_palindromePermutation.test.ts +++ b/technical-fundamentals/coding/problems/__tests__/strings/04_palindromePermutation.test.ts @@ -14,7 +14,7 @@ describe("04 - palindromePermutation", () => { }); test("Palindrome with even length", () => { - expect(palindromePermutation("rdeder")).toEqual(true); + expect(palindromePermutation("rdeder")).toEqual(false); }); test("Non-palindrome with odd length", () => {