| Index: components/spellcheck/renderer/spellcheck_provider_unittest.cc
|
| diff --git a/components/spellcheck/renderer/spellcheck_provider_unittest.cc b/components/spellcheck/renderer/spellcheck_provider_unittest.cc
|
| index 02684c0b1e4d6c9e94c0ba181decc05d05da421a..478fe21a1326be3a21b8efad25ac8b88d275d4de 100644
|
| --- a/components/spellcheck/renderer/spellcheck_provider_unittest.cc
|
| +++ b/components/spellcheck/renderer/spellcheck_provider_unittest.cc
|
| @@ -29,9 +29,8 @@ TEST_F(SpellCheckProviderCacheTest, SubstringWithMisspellings) {
|
|
|
| blink::WebVector<blink::WebTextCheckingResult> last_results;
|
| std::vector<blink::WebTextCheckingResult> results;
|
| - results.push_back(
|
| - blink::WebTextCheckingResult(blink::kWebTextDecorationTypeSpelling, 5, 3,
|
| - std::vector<blink::WebString>({"isq"})));
|
| + results.push_back(blink::WebTextCheckingResult(
|
| + blink::kWebTextDecorationTypeSpelling, 5, 3, blink::WebString("isq")));
|
| last_results.Assign(results);
|
| provider_.SetLastResults(base::ASCIIToUTF16("This isq a test"), last_results);
|
| EXPECT_TRUE(provider_.SatisfyRequestFromCache(
|
|
|