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

Unified Diff: build/android/pylib/instrumentation/test_runner.py

Issue 19723014: [Android] Fix misnamed method in r212582. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/instrumentation/test_runner.py
diff --git a/build/android/pylib/instrumentation/test_runner.py b/build/android/pylib/instrumentation/test_runner.py
index 5fa11357314c68ef718169a221f20cd761fbfe1e..5bb5ac2f19dac781211c74354fc9b8c0043ad45a 100644
--- a/build/android/pylib/instrumentation/test_runner.py
+++ b/build/android/pylib/instrumentation/test_runner.py
@@ -159,7 +159,7 @@ class TestRunner(base_test_runner.BaseTestRunner):
def TearDown(self):
"""Cleans up the test harness and saves outstanding data from test run."""
if self.ports_to_forward:
- self._UnmapPortPairs(self.ports_to_forward)
+ self._UnmapPorts([(port, port) for port in self.ports_to_forward])
super(TestRunner, self).TearDown()
def TestSetup(self, test):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698