Skip to content

Commit fde5df3

Browse files
committed
Make linter happy.
1 parent e4dabe7 commit fde5df3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

spec/v2/providers/https.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -577,10 +577,7 @@ describe("onCall", () => {
577577
const validResp = await runHandler(func, request({ auth: { pro: true, eap: true } }));
578578
expect(validResp.status).to.equal(200);
579579

580-
const truthyResp = await runHandler(
581-
func,
582-
request({ auth: { pro: "true", eap: "abc" } })
583-
);
580+
const truthyResp = await runHandler(func, request({ auth: { pro: "true", eap: "abc" } }));
584581
expect(truthyResp.status).to.equal(200);
585582

586583
const missingResp = await runHandler(func, request({ auth: { pro: true } }));

0 commit comments

Comments
 (0)