diff options
-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: |