summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-07-09 02:56:48 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-07-09 02:56:48 +0000
commitb3b6363b8140ed329a976e13311bf980edd9aebc (patch)
tree1c143cf38b164700102284fbade8dbc50c638128
parent035586c777e7af393d131f87b75265791e53bcde (diff)
parent49d3e51c4cc733fd15fd43b1f1197a36f0d5aa7f (diff)
downloadplatform_tools_test_connectivity-android10-s3-release.tar.gz
platform_tools_test_connectivity-android10-s3-release.tar.bz2
platform_tools_test_connectivity-android10-s3-release.zip
Change-Id: If7881ab63c5ac44f68ff8a33b0a86e10a75c3964
-rw-r--r--acts/framework/acts/controllers/adb.py1
-rwxr-xr-xacts/framework/acts/controllers/fastboot.py1
-rwxr-xr-xacts/tests/google/wifi/WifiNetworkSuggestionTest.py1
3 files changed, 3 insertions, 0 deletions
diff --git a/acts/framework/acts/controllers/adb.py b/acts/framework/acts/controllers/adb.py
index 5c643630aa..cf0e2c64ea 100644
--- a/acts/framework/acts/controllers/adb.py
+++ b/acts/framework/acts/controllers/adb.py
@@ -55,6 +55,7 @@ class AdbError(error.ActsError):
"""Raised when there is an error in adb operations."""
def __init__(self, cmd, stdout, stderr, ret_code):
+ super().__init__()
self.cmd = cmd
self.stdout = stdout
self.stderr = stderr
diff --git a/acts/framework/acts/controllers/fastboot.py b/acts/framework/acts/controllers/fastboot.py
index 7252e4a5e4..6f472550a5 100755
--- a/acts/framework/acts/controllers/fastboot.py
+++ b/acts/framework/acts/controllers/fastboot.py
@@ -24,6 +24,7 @@ class FastbootError(error.ActsError):
"""Raised when there is an error in fastboot operations."""
def __init__(self, cmd, stdout, stderr, ret_code):
+ super().__init__()
self.cmd = cmd
self.stdout = stdout
self.stderr = stderr
diff --git a/acts/tests/google/wifi/WifiNetworkSuggestionTest.py b/acts/tests/google/wifi/WifiNetworkSuggestionTest.py
index df68e1e974..5cb27767f7 100755
--- a/acts/tests/google/wifi/WifiNetworkSuggestionTest.py
+++ b/acts/tests/google/wifi/WifiNetworkSuggestionTest.py
@@ -127,6 +127,7 @@ class WifiNetworkSuggestionTest(WifiBaseTest):
# Enable suggestions by the app.
self.dut.log.debug("Enabling suggestions from test");
self.set_approved(True)
+ wutils.start_wifi_connection_scan_and_return_status(self.dut)
wutils.wait_for_connect(self.dut, expected_ssid)
if expect_post_connection_broadcast is None: