From 082b64b6c40fcab3ecf303f53ce83e7753894a32 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sun, 15 May 2022 01:44:18 -0500 Subject: Extract utility functions for JSON parsing --- src/helpers/url-helpers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/helpers') diff --git a/src/helpers/url-helpers.test.ts b/src/helpers/url-helpers.test.ts index e6036893e..5af3025e9 100644 --- a/src/helpers/url-helpers.test.ts +++ b/src/helpers/url-helpers.test.ts @@ -3,7 +3,7 @@ import * as url_helpers from './url-helpers' describe('url_helpers', () => { describe('isValidExternalURL', () => { describe('with string', () => { - it('returns false for empty string ', () => { + it('returns false for empty string', () => { const result = url_helpers.isValidExternalURL(''); expect(result).toBe(false); }); -- cgit v1.2.3-54-g00ecf