Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3899bac3 authored by Rahul Arya's avatar Rahul Arya
Browse files

[Pandora] Hotfix for pts-bot HFP breakage

I submitted aosp/2287880 which broke HFP MMIs. I didn't realize because (a) pts-bot is already broken on master, and (b) local testing worked since the next CL on the stack fixed it.

Change-Id: I3f50b8aa81279ddd12e6a6bd8e7a59fa9d1a40ce
Test: atest pts-bot:HFP
Bug: 237447510
parent 2f1c9e79
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -187,8 +187,7 @@ class IUT:
        # Handles HFP MMIs.
        if profile in ('HFP'):
            if not self._hfp:
                self._hfp = HFPProxy(test, grpc.insecure_channel(f'localhost:{self.pandora_server_port}'),
                                     self.rootcanal, self.modem)
                self._hfp = HFPProxy(grpc.insecure_channel(f'localhost:{self.pandora_server_port}'))
            return self._hfp.interact(test, interaction, description, pts_address)
        # Handles HID MMIs.
        if profile in ('HID'):