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()