| Index: chrome/browser/autofill/form_field_unittest.cc
|
| diff --git a/chrome/browser/autofill/form_field_unittest.cc b/chrome/browser/autofill/form_field_unittest.cc
|
| index f1df191b6ff96ccb4e7adb1084d838438477048c..16b51a0c83b3968afe91add1751578b1c6528946 100644
|
| --- a/chrome/browser/autofill/form_field_unittest.cc
|
| +++ b/chrome/browser/autofill/form_field_unittest.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/string16.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/autofill/autofill_field.h"
|
| #include "chrome/browser/autofill/form_field.h"
|
| @@ -18,7 +19,7 @@ TEST(FormFieldTest, Match) {
|
| EXPECT_TRUE(FormField::Match(&field, string16(), FormField::MATCH_LABEL));
|
|
|
| // Strictly empty pattern matches empty string.
|
| - field.label = ASCIIToUTF16("");
|
| + field.label = string16();
|
| EXPECT_TRUE(FormField::Match(&field, ASCIIToUTF16("^$"),
|
| FormField::MATCH_LABEL));
|
|
|
|
|