diff options
author | android-build-team Robot <android-build-team-robot@google.com> | 2019-07-09 02:56:48 +0000 |
---|---|---|
committer | android-build-team Robot <android-build-team-robot@google.com> | 2019-07-09 02:56:48 +0000 |
commit | b3b6363b8140ed329a976e13311bf980edd9aebc (patch) | |
tree | 1c143cf38b164700102284fbade8dbc50c638128 | |
parent | 035586c777e7af393d131f87b75265791e53bcde (diff) | |
parent | 49d3e51c4cc733fd15fd43b1f1197a36f0d5aa7f (diff) | |
download | platform_tools_test_connectivity-android10-security-release.tar.gz platform_tools_test_connectivity-android10-security-release.tar.bz2 platform_tools_test_connectivity-android10-security-release.zip |
Snap for 5713174 from 49d3e51c4cc733fd15fd43b1f1197a36f0d5aa7f to qt-releaseandroid-vts-10.0_r5android-vts-10.0_r4android-vts-10.0_r3android-vts-10.0_r2android-vts-10.0_r1android-cts-10.0_r5android-cts-10.0_r4android-cts-10.0_r3android-cts-10.0_r2android-cts-10.0_r1android-10.0.0_r6android-10.0.0_r5android-10.0.0_r46android-10.0.0_r4android-10.0.0_r3android-10.0.0_r2android-10.0.0_r17android-10.0.0_r11android-10.0.0_r10android-10.0.0_r1android10-tests-releaseandroid10-security-releaseandroid10-s3-releaseandroid10-s2-releaseandroid10-s1-releaseandroid10-release
Change-Id: If7881ab63c5ac44f68ff8a33b0a86e10a75c3964
-rw-r--r-- | acts/framework/acts/controllers/adb.py | 1 | ||||
-rwxr-xr-x | acts/framework/acts/controllers/fastboot.py | 1 | ||||
-rwxr-xr-x | acts/tests/google/wifi/WifiNetworkSuggestionTest.py | 1 |
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: |