| Index: chrome/browser/sync/glue/autofill_model_associator_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/autofill_model_associator_unittest.cc b/chrome/browser/sync/glue/autofill_model_associator_unittest.cc
|
| index cfd7e8d5287a893a8fca491d63e7d22abdd4fbf5..e8803599650e3d36b66e29450dd2e6e3250a636d 100644
|
| --- a/chrome/browser/sync/glue/autofill_model_associator_unittest.cc
|
| +++ b/chrome/browser/sync/glue/autofill_model_associator_unittest.cc
|
| @@ -6,6 +6,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "chrome/browser/sync/glue/autofill_model_associator.h"
|
| +#include "chrome/browser/sync/glue/autofill_model_associator2.h"
|
|
|
| using browser_sync::AutofillModelAssociator;
|
|
|
| @@ -26,15 +27,3 @@ TEST_F(AutofillModelAssociatorTest, KeyToTag) {
|
| AutofillModelAssociator::KeyToTag(UTF8ToUTF16(""),
|
| UTF8ToUTF16("|")));
|
| }
|
| -
|
| -TEST_F(AutofillModelAssociatorTest, ProfileLabelToTag) {
|
| - string16 label(ASCIIToUTF16("awesome_address"));
|
| - EXPECT_EQ("autofill_profile|awesome_address",
|
| - AutofillModelAssociator::ProfileLabelToTag(label));
|
| -
|
| - EXPECT_EQ("autofill_profile|%7C%7C",
|
| - AutofillModelAssociator::ProfileLabelToTag(ASCIIToUTF16("||")));
|
| - EXPECT_NE(AutofillModelAssociator::KeyToTag(ASCIIToUTF16("autofill_profile"),
|
| - ASCIIToUTF16("home")),
|
| - AutofillModelAssociator::ProfileLabelToTag(ASCIIToUTF16("home")));
|
| -}
|
|
|