Skip to content

Commit 2106784

Browse files
committed
Small comment changes
1 parent 3f1bc0f commit 2106784

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

l10n_CM/Unified/test_demo_cc_dropdown-presence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_dropdown_presence_credit_card(driver: Firefox, region: str):
1717
C2886598 - Verify autofill dropdown is displayed only for the eligible fields after a credit card is saved
1818
"""
1919

20-
# Initialize
20+
# Initialize objects
2121
util = Utilities()
2222
about_prefs = AboutPrefs(driver, category="privacy")
2323
about_prefs_cc_popup = AboutPrefs(driver)

modules/page_object_autofill.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ def verify_autofill_dropdown_all_fields(self, ccp: AutofillPopup):
7878
for field in self.fields:
7979
self.double_click("form-field", labels=[field])
8080
ccp.ensure_autofill_dropdown_visible()
81-
# Ensure 'cc-csc' does NOT trigger the dropdown
81+
# Ensure 'cc-csc' does NOT trigger the autofill dropdown
8282
self.double_click("form-field", labels=["cc-csc"])
83-
ccp.ensure_autofill_dropdown_not_visible() # Ensure popup does NOT appear
83+
ccp.ensure_autofill_dropdown_not_visible()
8484

8585
def verify_four_fields(
8686
self, ccp: AutofillPopup, credit_card_sample_data: CreditCardBase

0 commit comments

Comments
 (0)