From 645107c3fcc967e8b5824355c23287611d864612 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 26 Sep 2021 14:19:27 +0900 Subject: Fix mismatched signature --- test/content/operators/impls/FollowOperatorFactoryChain.test.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'test/content/operators/impls') diff --git a/test/content/operators/impls/FollowOperatorFactoryChain.test.ts b/test/content/operators/impls/FollowOperatorFactoryChain.test.ts index 526a93c..91f734b 100644 --- a/test/content/operators/impls/FollowOperatorFactoryChain.test.ts +++ b/test/content/operators/impls/FollowOperatorFactoryChain.test.ts @@ -8,12 +8,9 @@ describe("FocusOperatorFactoryChain", () => { describe("#create", () => { it("returns an operator", () => { const sut = new FocusOperatorFactoryChain(new MockFocusPresenter()); - expect( - sut.create( - { type: operations.FOCUS_INPUT, newTab: false, background: false }, - 0 - ) - ).to.be.instanceOf(FocusOperator); + expect(sut.create({ type: operations.FOCUS_INPUT }, 0)).to.be.instanceOf( + FocusOperator + ); expect(sut.create({ type: operations.SCROLL_TOP }, 0)).to.be.null; }); }); -- cgit v1.2.3