Snap for 5713174 from 49d3e51c4cc733fd15fd43b1f1197a36f0d5aa7f to qt-release

Change-Id: If7881ab63c5ac44f68ff8a33b0a86e10a75c3964
diff --git a/acts/framework/acts/controllers/adb.py b/acts/framework/acts/controllers/adb.py
index 5c64363..cf0e2c6 100644
--- a/acts/framework/acts/controllers/adb.py
+++ b/acts/framework/acts/controllers/adb.py
@@ -55,6 +55,7 @@
     """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 7252e4a..6f47255 100755
--- a/acts/framework/acts/controllers/fastboot.py
+++ b/acts/framework/acts/controllers/fastboot.py
@@ -24,6 +24,7 @@
     """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 df68e1e..5cb2776 100755
--- a/acts/tests/google/wifi/WifiNetworkSuggestionTest.py
+++ b/acts/tests/google/wifi/WifiNetworkSuggestionTest.py
@@ -127,6 +127,7 @@
         # 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: