Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl committed Aug 10, 2023
1 parent 07591c8 commit 08d08f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ class FakeTransactionRunner {
calledWith_: IArguments;
constructor() {
this.calledWith_ = arguments;
// eslint-disable-next-line @typescript-eslint/no-this-alias
fakeTransactionRunner = this;
}
async run(): Promise<void> {}
Expand All @@ -144,6 +145,7 @@ class FakeAsyncTransactionRunner<T extends {}> {
calledWith_: IArguments;
constructor() {
this.calledWith_ = arguments;
// eslint-disable-next-line @typescript-eslint/no-this-alias
fakeAsyncTransactionRunner = this;
}
async run(): Promise<T> {
Expand Down

0 comments on commit 08d08f8

Please sign in to comment.