Skip to content

Commit

Permalink
chore: apply prettier reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl committed Jan 12, 2024
1 parent 0ead50c commit 2cb0700
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test-util/test.submit-addon.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const mockNodeFetch = (nodeFetchStub, url, method, responses) => {
// https://github.com/mozilla/web-ext/issues/2917#issuecomment-1766000545
const urlMatch = url instanceof URL ? url.href : url;
const stubMatcher = nodeFetchStub.withArgs(
sinon.match((urlArg) =>
urlMatch === (urlArg instanceof URL ? urlArg.href : urlArg)
sinon.match(
(urlArg) => urlMatch === (urlArg instanceof URL ? urlArg.href : urlArg),
),
sinon.match.has('method', method),
);
Expand Down

0 comments on commit 2cb0700

Please sign in to comment.