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

Unified Diff: tools/variations/fieldtrial_util.py

Issue 2789583002: Don't add quotes for testing config feature command line flags. (Closed)
Patch Set: Created 3 years, 9 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 | tools/variations/fieldtrial_util_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/variations/fieldtrial_util.py
diff --git a/tools/variations/fieldtrial_util.py b/tools/variations/fieldtrial_util.py
index bc21d69d782dd69c6e9fa8c48f028fc4eae56735..74de88eba76b84a335474558549e38ee97bc1674 100644
--- a/tools/variations/fieldtrial_util.py
+++ b/tools/variations/fieldtrial_util.py
@@ -95,9 +95,9 @@ def GenerateArgs(config_path, platform):
if len(params):
args.append('--force-fieldtrial-params=%s' % ','.join(params))
if len(enable_features):
- args.append('--enable-features="%s"' % ','.join(enable_features))
+ args.append('--enable-features=%s' % ','.join(enable_features))
if len(disable_features):
- args.append('--disable-features="%s"' % ','.join(disable_features))
+ args.append('--disable-features=%s' % ','.join(disable_features))
return args
def main():
« no previous file with comments | « no previous file | tools/variations/fieldtrial_util_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698