Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
misscoded committed Aug 27, 2021
1 parent 2fc255a commit 3141cce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/middleware/builtin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ describe('directMention()', () => {

try {
await middleware(fakeArgs);
} catch (err: any) {
} catch (err) {
error = err;
}

Expand Down Expand Up @@ -397,7 +397,7 @@ describe('ignoreSelf()', () => {
assert(fakeNext.notCalled);
});

it("should filter an event out when only a botUserId is passed", async () => {
it('should filter an event out when only a botUserId is passed', async () => {
// Arrange
const fakeNext = sinon.fake();
const fakeBotUserId = 'BUSER1';
Expand Down

0 comments on commit 3141cce

Please sign in to comment.