From 08d08f8456e237988c43bb1b29ddc1d79c67ff62 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Thu, 10 Aug 2023 13:31:04 -0700 Subject: [PATCH] fix lint --- test/database.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/database.ts b/test/database.ts index 7082a75b2..1617172ba 100644 --- a/test/database.ts +++ b/test/database.ts @@ -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 {} @@ -144,6 +145,7 @@ class FakeAsyncTransactionRunner { calledWith_: IArguments; constructor() { this.calledWith_ = arguments; + // eslint-disable-next-line @typescript-eslint/no-this-alias fakeAsyncTransactionRunner = this; } async run(): Promise {