From db5b4af7305d9fab34d07e2fecc1acb424be25b7 Mon Sep 17 00:00:00 2001 From: Syed Fasiuddin Date: Wed, 20 Oct 2021 18:43:26 +0530 Subject: [PATCH] formatting with standardjs --- String/test/AlphaNumericPalindrome.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', () => {