Skip to content

Commit 66f3e31

Browse files
committed
Another attempt to stabilize
1 parent 2c8978a commit 66f3e31

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

modules/testrail_integration.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,12 @@ def organize_l10n_entries(
392392
if not test_results[category].get(run_id):
393393
test_results[category][run_id] = []
394394
test_results[category][run_id].append(
395-
{"suite_id": suite_id, "site": site, "test_case": test_case, "duration": f"{duration}s"}
395+
{
396+
"suite_id": suite_id,
397+
"site": site,
398+
"test_case": test_case,
399+
"duration": f"{duration}s",
400+
}
396401
)
397402

398403
return test_results

tests/address_bar_and_search/test_search_suggestions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
from modules.util import BrowserActions
77

88
# Constants
9-
SEARCH_TERM_SPONSORED = "iphone"
9+
SEARCH_TERM_SPONSORED = "xbox one"
1010
SEARCH_TERM_NON_SPONSORED = "wiki"
11-
RETRY_LIMIT = 5
11+
RETRY_LIMIT = 10
1212

1313

1414
@pytest.fixture()

0 commit comments

Comments
 (0)