summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorpliard@chromium.org <pliard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-01 15:39:49 +0000
committerpliard@chromium.org <pliard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-01 15:39:49 +0000
commit9562f40f00dab5117a37553b712f902d2ddf5417 (patch)
tree3003c2ce4c506ee710ac63691de6d339c95dd91b /build
parente055be2497f5f5576b6dd78afecf78310682e541 (diff)
downloadchromium_src-9562f40f00dab5117a37553b712f902d2ddf5417.zip
chromium_src-9562f40f00dab5117a37553b712f902d2ddf5417.tar.gz
chromium_src-9562f40f00dab5117a37553b712f902d2ddf5417.tar.bz2
Fix call to _ForwardPorts() in test_runner.py.
TBR=bulach@chromium.org BUG=242846 Review URL: https://codereview.chromium.org/21569002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215041 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/android/pylib/instrumentation/test_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/pylib/instrumentation/test_runner.py b/build/android/pylib/instrumentation/test_runner.py
index c29a381..d6c7c78 100644
--- a/build/android/pylib/instrumentation/test_runner.py
+++ b/build/android/pylib/instrumentation/test_runner.py
@@ -151,7 +151,7 @@ class TestRunner(base_test_runner.BaseTestRunner):
http_server_ports = self.LaunchTestHttpServer(
os.path.join(constants.DIR_SOURCE_ROOT), self._lighttp_port)
if self.ports_to_forward:
- self.ForwardPorts([(port, port) for port in self.ports_to_forward])
+ self._ForwardPorts([(port, port) for port in self.ports_to_forward])
self.flags.AddFlags(['--enable-test-intents'])
def TearDown(self):