From 9562f40f00dab5117a37553b712f902d2ddf5417 Mon Sep 17 00:00:00 2001 From: "pliard@chromium.org" Date: Thu, 1 Aug 2013 15:39:49 +0000 Subject: 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 --- build/android/pylib/instrumentation/test_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') 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): -- cgit v1.1