Index: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
index 7bd7b96b1c251942129a7a184f736460f15f0461..e087266fadf217b82483380335abec1f8e64c036 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
@@ -1400,16 +1400,16 @@ TEST_F(AutofillDialogControllerTest, BillingVsShippingStreetAddress) { |
// separated by commas. |
EXPECT_TRUE(base::StartsWith(form_structure()->field(0)->value, |
shipping_profile.GetRawInfo(ADDRESS_HOME_LINE1), |
- true)); |
+ base::CompareCase::SENSITIVE)); |
EXPECT_TRUE(base::EndsWith(form_structure()->field(0)->value, |
shipping_profile.GetRawInfo(ADDRESS_HOME_LINE2), |
- true)); |
+ base::CompareCase::SENSITIVE)); |
EXPECT_TRUE(base::StartsWith(form_structure()->field(1)->value, |
billing_profile.GetRawInfo(ADDRESS_HOME_LINE1), |
- true)); |
+ base::CompareCase::SENSITIVE)); |
EXPECT_TRUE(base::EndsWith(form_structure()->field(1)->value, |
billing_profile.GetRawInfo(ADDRESS_HOME_LINE2), |
- true)); |
+ base::CompareCase::SENSITIVE)); |
// The textareas should be an exact match. |
EXPECT_EQ(shipping_profile.GetRawInfo(ADDRESS_HOME_STREET_ADDRESS), |
form_structure()->field(2)->value); |