From 20d40d8017284f80876bde8e28cbde47c3651886 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Mon, 13 Apr 2020 20:42:02 +0900 Subject: fix test --- test/background/completion/OpenCompletionUseCase.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/background/completion/OpenCompletionUseCase.test.ts b/test/background/completion/OpenCompletionUseCase.test.ts index a0d8b44..f43e6c1 100644 --- a/test/background/completion/OpenCompletionUseCase.test.ts +++ b/test/background/completion/OpenCompletionUseCase.test.ts @@ -91,7 +91,7 @@ describe("OpenCompletionUseCase", () => { google: "https://google.com/search?q={}", yahoo: "https://search.yahoo.com/search?q={}", bing: "https://bing.com/search?q={}", - google_ja: "https://google.co.jp/search?q={}", + googleja: "https://google.co.jp/search?q={}", }), properties: DefaultSetting.properties, blacklist: DefaultSetting.blacklist, @@ -103,11 +103,11 @@ describe("OpenCompletionUseCase", () => { "google", "yahoo", "bing", - "google_ja", + "googleja", ]); expect(await sut.requestSearchEngines("go")).to.deep.equal([ "google", - "google_ja", + "googleja", ]); expect(await sut.requestSearchEngines("x")).to.be.empty; }); -- cgit v1.2.3