From 5094611ade671d04d8bf86fa93a3708b18a845b8 Mon Sep 17 00:00:00 2001 From: dakkar Date: Sun, 24 Nov 2024 14:04:03 +0000 Subject: [PATCH] spaces / lint --- packages/backend/test/unit/UtilityService.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/backend/test/unit/UtilityService.ts b/packages/backend/test/unit/UtilityService.ts index b5e978569e..837b55206e 100644 --- a/packages/backend/test/unit/UtilityService.ts +++ b/packages/backend/test/unit/UtilityService.ts @@ -17,23 +17,23 @@ describe('UtilityService', () => { describe('punyHost', () => { test('simple', () => { - assert.equal(utilityService.punyHost('http://www.foo.com'),'www.foo.com'); + assert.equal(utilityService.punyHost('http://www.foo.com'), 'www.foo.com'); }); test('japanese', () => { - assert.equal(utilityService.punyHost('http://www.新聞.com'),'www.xn--efvv70d.com'); + assert.equal(utilityService.punyHost('http://www.新聞.com'), 'www.xn--efvv70d.com'); }); }); describe('punyHostPSLDomain', () => { test('simple', () => { - assert.equal(utilityService.punyHostPSLDomain('http://www.foo.com'),'foo.com'); + assert.equal(utilityService.punyHostPSLDomain('http://www.foo.com'), 'foo.com'); }); test('japanese', () => { - assert.equal(utilityService.punyHostPSLDomain('http://www.新聞.com'),'xn--efvv70d.com'); + assert.equal(utilityService.punyHostPSLDomain('http://www.新聞.com'), 'xn--efvv70d.com'); }); test('lower', () => { - assert.equal(utilityService.punyHostPSLDomain('http://foo.github.io'),'foo.github.io'); - assert.equal(utilityService.punyHostPSLDomain('http://foo.bar.github.io'),'bar.github.io'); + assert.equal(utilityService.punyHostPSLDomain('http://foo.github.io'), 'foo.github.io'); + assert.equal(utilityService.punyHostPSLDomain('http://foo.bar.github.io'), 'bar.github.io'); }); }); });