From d9783206b767379f633c2895bfdb4fa40d0b306c Mon Sep 17 00:00:00 2001 From: Rhys Evans Date: Sat, 21 Nov 2020 22:08:20 +0000 Subject: [PATCH] aaargh - lint! --- test/specs/config/fallbackToNetwork.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/specs/config/fallbackToNetwork.test.js b/test/specs/config/fallbackToNetwork.test.js index 22bb4562..8fdc04fb 100644 --- a/test/specs/config/fallbackToNetwork.test.js +++ b/test/specs/config/fallbackToNetwork.test.js @@ -17,7 +17,7 @@ describe('fallbackToNetwork', () => { fm.config.fallbackToNetwork = true; fm.mock('http://mocked.com', 201); expect(() => fm.fetchHandler('http://unmocked.com')).not.to.throw(); - delete theGlobal.fetch + delete theGlobal.fetch; }); it('actually falls back to network when configured globally', async () => { @@ -28,7 +28,7 @@ describe('fallbackToNetwork', () => { expect(res.status).to.equal(202); fetchMock.restore(); fetchMock.config.fallbackToNetwork = false; - delete theGlobal.fetch + delete theGlobal.fetch; }); it('actually falls back to network when configured in a sandbox properly', async () => {