From 04fbf92480612ef4250ab74ab77ad98ef10fc210 Mon Sep 17 00:00:00 2001 From: Syed Fasiuddin Date: Sat, 16 Oct 2021 15:45:12 +0530 Subject: [PATCH] fixed the miss spelled the file name --- String/test/AlphaNumericPalindrome.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/String/test/AlphaNumericPalindrome.test.js b/String/test/AlphaNumericPalindrome.test.js index 10f36f231..ba82cb2de 100644 --- a/String/test/AlphaNumericPalindrome.test.js +++ b/String/test/AlphaNumericPalindrome.test.js @@ -1,4 +1,4 @@ -import { alphaNumericPlaindrome } from '../AlphanumericPalindrome' +import { alphaNumericPlaindrome } from '../AlphaNumericPalindrome' test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => { expect(alphaNumericPlaindrome('eye')).toBe(true)