diff options
Diffstat (limited to 'test/background/completion/OpenCompletionUseCase.test.ts')
-rw-r--r-- | test/background/completion/OpenCompletionUseCase.test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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; }); |