diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-04-13 20:42:02 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-04-13 20:42:02 +0900 |
commit | 20d40d8017284f80876bde8e28cbde47c3651886 (patch) | |
tree | dae15ac18b2d90d9173640c656e13f25f134b442 /test | |
parent | e1dac618a8b8929f601c7ec8aca3842c5ebf9d03 (diff) |
fix test
Diffstat (limited to 'test')
-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; }); |