Skip to content

Commit

Permalink
Update android codelab to fix unpacking error (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminLawson authored Nov 13, 2023
1 parent bdeeb4c commit 04e51f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/android-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class CodelabTest(base_test.BaseTestClass): # type: ignore[misc]
# Method to set up the DUT and REF devices for the test (called once).
def setup_class(self) -> None:
self.devices = PandoraDevices(self) # Create Pandora devices from the config.
self.dut, ref = self.devices
self.dut, ref, *_ = self.devices
assert isinstance(ref, BumblePandoraClient) # REF device is a Bumble device.
self.ref = ref

Expand Down

0 comments on commit 04e51f4

Please sign in to comment.