diff --git a/String/test/AlphaNumericPalindrome.test.js b/String/test/AlphaNumericPalindrome.test.js index ba82cb2de..f544c565b 100644 --- a/String/test/AlphaNumericPalindrome.test.js +++ b/String/test/AlphaNumericPalindrome.test.js @@ -5,11 +5,11 @@ test('should return true if the given string has alphanumeric characters that ar }) test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => { - expect(alphaNumericPlaindrome('0_0 (: /-\ :) 0-0')).toBe(true) + expect(alphaNumericPlaindrome('0_0 (: /-:) 0-0')).toBe(true) }) test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => { - expect(alphaNumericPlaindrome('five|\_/|four')).toBe(false) + expect(alphaNumericPlaindrome('five|_/|four')).toBe(false) }) test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {