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

Unified Diff: chrome/test/data/autofill/merge/tools/serialize_profiles.py

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fix. Created 9 years, 3 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
Index: chrome/test/data/autofill/merge/tools/serialize_profiles.py
diff --git a/chrome/test/data/autofill/merge/tools/serialize_profiles.py b/chrome/test/data/autofill/merge/tools/serialize_profiles.py
index ba31c85696c185c6abd3ace5a60b70525329f238..5c0c7b133390bc69c008fb56bd5916eabede9975 100644
--- a/chrome/test/data/autofill/merge/tools/serialize_profiles.py
+++ b/chrome/test/data/autofill/merge/tools/serialize_profiles.py
@@ -74,10 +74,7 @@ def main():
for profile in cursor:
guid = profile[0]
- if int(profile[1]) == 0:
- profiles[guid].append(("PHONE_HOME_WHOLE_NUMBER", profile[2]))
- else:
- profiles[guid].append(("PHONE_FAX_WHOLE_NUMBER", profile[2]))
+ profiles[guid].append(("PHONE_HOME_WHOLE_NUMBER", profile[2]))
print SerializeProfiles(profiles.values())
« no previous file with comments | « chrome/test/data/autofill/merge/tools/reserialize_profiles_from_query.py ('k') | chrome/test/functional/autofill.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698