Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2391)

Unified Diff: chrome/browser/autofill/autofill_browsertest.cc

Issue 310463005: Fill in more name fields with requestAutocomplete (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dumb test is dumb Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_browsertest.cc
diff --git a/chrome/browser/autofill/autofill_browsertest.cc b/chrome/browser/autofill/autofill_browsertest.cc
index 1f2315f87d829642ae30398000866fbdc0c53284..d7664845114254c85aa895b126891816d0fb5829 100644
--- a/chrome/browser/autofill/autofill_browsertest.cc
+++ b/chrome/browser/autofill/autofill_browsertest.cc
@@ -379,7 +379,7 @@ IN_PROC_BROWSER_TEST_F(AutofillTest, FillProfileCrazyCharacters) {
SetProfiles(&profiles);
ASSERT_EQ(profiles.size(), personal_data_manager()->GetProfiles().size());
for (size_t i = 0; i < profiles.size(); ++i)
- ASSERT_EQ(profiles[i], *personal_data_manager()->GetProfiles()[i]);
+ EXPECT_EQ(profiles[i], *personal_data_manager()->GetProfiles()[i]);
std::vector<CreditCard> cards;
CreditCard card1;
@@ -430,7 +430,7 @@ IN_PROC_BROWSER_TEST_F(AutofillTest, FillProfileCrazyCharacters) {
SetCards(&cards);
ASSERT_EQ(cards.size(), personal_data_manager()->GetCreditCards().size());
for (size_t i = 0; i < cards.size(); ++i)
- ASSERT_EQ(cards[i], *personal_data_manager()->GetCreditCards()[i]);
+ EXPECT_EQ(cards[i], *personal_data_manager()->GetCreditCards()[i]);
}
// Test filling in invalid values for profiles are saved as-is. Phone
« no previous file with comments | « no previous file | chrome/browser/sync/test/integration/two_client_autofill_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698