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

Unified Diff: tools/telemetry/telemetry/core/browser_unittest.py

Issue 23512005: BrowserOptions.extra_browser_args is now a set. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: AppendExtraBrowserArgs Created 7 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: tools/telemetry/telemetry/core/browser_unittest.py
diff --git a/tools/telemetry/telemetry/core/browser_unittest.py b/tools/telemetry/telemetry/core/browser_unittest.py
index bf7332560046239f3df0c87bb9f14679c6cb17de..b794cb5b9c0511e0c8476f2fbc5ff039a14ad18b 100644
--- a/tools/telemetry/telemetry/core/browser_unittest.py
+++ b/tools/telemetry/telemetry/core/browser_unittest.py
@@ -34,7 +34,7 @@ class BrowserTest(unittest.TestCase):
options.profile_type = profile_type
if extra_browser_args:
- options.extra_browser_args.extend(extra_browser_args)
+ options.AppendExtraBrowserArgs(extra_browser_args)
browser_to_create = browser_finder.FindBrowser(options)
if not browser_to_create:

Powered by Google App Engine
This is Rietveld 408576698