Skip to content

Commit

Permalink
refactor: Remove un-needed argument
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Aug 9, 2020
1 parent d9d7016 commit a179ac4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/middleware-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const headers = {
"x-hub-signature": "sha1=f4d795e69b5d03c139cc6ea991ad3e5762d13e2f",
};

test("Invalid payload", (t) => {
test("Invalid payload", () => {
const requestMock = new EventEmitter();
requestMock.method = "POST";
requestMock.headers = headers;
Expand All @@ -29,7 +29,7 @@ test("Invalid payload", (t) => {
requestMock.emit("end");
});

test("request error", (t) => {
test("request error", () => {
const requestMock = new EventEmitter();
requestMock.method = "POST";
requestMock.headers = headers;
Expand Down

0 comments on commit a179ac4

Please sign in to comment.