From e1d2410e8f0b71c434cd47619408ddaa4a7d9252 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Sat, 17 Feb 2024 10:14:42 -0800 Subject: [PATCH] style: prettier --- tests/got/test_nock_lifecycle.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/got/test_nock_lifecycle.js b/tests/got/test_nock_lifecycle.js index 8923a3e58..622f3076b 100644 --- a/tests/got/test_nock_lifecycle.js +++ b/tests/got/test_nock_lifecycle.js @@ -166,9 +166,12 @@ describe('Nock lifecycle functions', () => { it("activeMocks doesn't return duplicate mocks", () => { nock('http://example.test') - .get('/').reply() - .get('/second').reply() - .get('/third').reply() + .get('/') + .reply() + .get('/second') + .reply() + .get('/third') + .reply() expect(nock.activeMocks()).to.deep.equal([ 'GET http://example.test:80/',