Index: chrome/test/functional/webpagereplay.py |
diff --git a/chrome/test/functional/webpagereplay.py b/chrome/test/functional/webpagereplay.py |
index 0cfba58cf55cb7b534899c0f3ca3a1544df3d050..8b0ca9303317836c958974f35cf5b71a460e86a2 100755 |
--- a/chrome/test/functional/webpagereplay.py |
+++ b/chrome/test/functional/webpagereplay.py |
@@ -120,14 +120,14 @@ class ReplayServer(object): |
def _AddDefaultReplayOptions(self): |
"""Set WPR command-line options. Can be overridden if needed.""" |
- self.replay_options += [ |
+ self.replay_options = [ |
'--host', str(self._replay_host), |
'--port', str(self._http_port), |
'--ssl_port', str(self._https_port), |
'--use_closest_match', |
'--no-dns_forwarding', |
'--log_level', 'warning' |
- ] |
+ ] + self.replay_options |
def _CheckPath(self, label, path): |
if not os.path.exists(path): |