| commit | d9366411fddd6f879e1970ec74c0ec40d4060dc1 | [log] [tgz] |
|---|---|---|
| author | Chandrasekhar Gajvalli <gajvalli@google.com> | Tue Jul 29 17:47:19 2025 +0000 |
| committer | Chandrasekhar Gajvalli (xWF) <gajvalli@google.com> | Thu Jul 31 20:57:35 2025 -0700 |
| tree | 9c6a6fa07c51e77d9ae65f6fbed02465ab3320bf | |
| parent | 8f9caa15c16489b3061dad5359373d2968cfbb84 [diff] |
SMSUtilityTest fix Test: https://android-build.corp.google.com/builds/abtd/run/L27700030014613253 Bug: 434886787 Change-Id: I50fb9e5f8d8aede19d11186ede72a207e40cee7a
diff --git a/tests/automotive/mobly_tests/sms/bt_sms_reply_from_phone_sync_test.py b/tests/automotive/mobly_tests/sms/bt_sms_reply_from_phone_sync_test.py index 5b5235e..0ba9949 100644 --- a/tests/automotive/mobly_tests/sms/bt_sms_reply_from_phone_sync_test.py +++ b/tests/automotive/mobly_tests/sms/bt_sms_reply_from_phone_sync_test.py
@@ -39,6 +39,7 @@ logging.info("Pairing phone to car head unit.") self.bt_utils.pair_primary_to_secondary() + super().enable_recording() logging.info("wait for user permissions popup & give contacts and sms permissions") self.call_utils.wait_with_log(20) @@ -85,7 +86,7 @@ def teardown_test(self): # Go to home screen self.call_utils.press_home() - super().teardown_no_video_recording() + super().teardown_test() if __name__ == '__main__': common_main() \ No newline at end of file
diff --git a/tests/automotive/mobly_tests/sms/bt_sms_utility_test.py b/tests/automotive/mobly_tests/sms/bt_sms_utility_test.py index bbee145..43225f7 100644 --- a/tests/automotive/mobly_tests/sms/bt_sms_utility_test.py +++ b/tests/automotive/mobly_tests/sms/bt_sms_utility_test.py
@@ -50,6 +50,10 @@ asserts.assert_false(self.phone_notpaired.mbs.btIsEnabled(), '<Bluetooth> should be OFF') + def teardown_test(self): + # Go to home screen + self.call_utils.press_home() + super().teardown_no_video_recording() if __name__ == '__main__': common_main()