Skip to content

Commit 31a74af

Browse files
committed
Remove unused spy assignment.
1 parent 58faf58 commit 31a74af

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/api.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,8 @@ const mockOctokit = {
3838
};
3939

4040
describe("API", () => {
41-
let coreGetInputSpy: jest.SpyInstance<
42-
string,
43-
[name: string, options?: core.InputOptions]
44-
>;
4541
beforeEach(() => {
46-
coreGetInputSpy = jest.spyOn(core, "getInput").mockReturnValue("");
42+
jest.spyOn(core, "getInput").mockReturnValue("");
4743
jest.spyOn(github, "getOctokit").mockReturnValue(mockOctokit as any);
4844
init();
4945
});

0 commit comments

Comments
 (0)