Skip to content

Commit db5b4af

Browse files
author
Syed Fasiuddin
committed
formatting with standardjs
1 parent 81f5f40 commit db5b4af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

String/test/AlphaNumericPalindrome.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ test('should return true if the given string has alphanumeric characters that ar
55
})
66

77
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {
8-
expect(alphaNumericPlaindrome('0_0 (: /-\ :) 0-0')).toBe(true)
8+
expect(alphaNumericPlaindrome('0_0 (: /-:) 0-0')).toBe(true)
99
})
1010

1111
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {
12-
expect(alphaNumericPlaindrome('five|\_/|four')).toBe(false)
12+
expect(alphaNumericPlaindrome('five|_/|four')).toBe(false)
1313
})
1414

1515
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {

0 commit comments

Comments
 (0)