Skip to content

Commit 121d4c6

Browse files
committed
chore: fix lint
1 parent 26fc457 commit 121d4c6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/emulator/functionsEmulator.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ describe("FunctionsEmulator", () => {
135135
mkdtempSync.onFirstCall().returns("/tmp/firebase-tools-python-shim-missing");
136136
mkdtempSync.onSecondCall().returns("/tmp/firebase-tools-python-shim-recreated");
137137
sandbox.stub(fs, "writeFileSync");
138-
const rmSync = sandbox.stub(fs, "rmSync").throws(
139-
Object.assign(new Error("missing"), { code: "ENOENT" }),
140-
);
138+
const rmSync = sandbox
139+
.stub(fs, "rmSync")
140+
.throws(Object.assign(new Error("missing"), { code: "ENOENT" }));
141141

142142
const emulator = makeEmulator(true);
143143
const log = sandbox.stub((emulator as any).logger, "log");

0 commit comments

Comments
 (0)