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

Commit ea6cedc1 authored by Myles Watson's avatar Myles Watson
Browse files

HCI: Advertise an address with D for DUT

Bug: 148096951
Test: ./cert/run_cert_facade_only.sh
Change-Id: I4cea9ed386b28a50507563681c3d14ef4df8c74d
parent a3e96e62
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -107,14 +107,14 @@ class LeAdvertisingManagerTest(GdFacadeOnlyBaseTestClass):
            config = le_advertising_facade.AdvertisingConfig(
            config = le_advertising_facade.AdvertisingConfig(
                advertisement=[gap_data],
                advertisement=[gap_data],
                random_address=common.BluetoothAddress(
                random_address=common.BluetoothAddress(
                    address=bytes(b'A6:A5:A4:A3:A2:A1')),
                    address=bytes(b'0D:05:04:03:02:01')),
                interval_min=512,
                interval_min=512,
                interval_max=768,
                interval_max=768,
                event_type=le_advertising_facade.AdvertisingEventType.ADV_IND,
                event_type=le_advertising_facade.AdvertisingEventType.ADV_IND,
                address_type=common.RANDOM_DEVICE_ADDRESS,
                address_type=common.RANDOM_DEVICE_ADDRESS,
                peer_address_type=common.PUBLIC_DEVICE_OR_IDENTITY_ADDRESS,
                peer_address_type=common.PUBLIC_DEVICE_OR_IDENTITY_ADDRESS,
                peer_address=common.BluetoothAddress(
                peer_address=common.BluetoothAddress(
                    address=bytes(b'0D:05:04:03:02:01')),
                    address=bytes(b'A6:A5:A4:A3:A2:A1')),
                channel_map=7,
                channel_map=7,
                filter_policy=le_advertising_facade.AdvertisingFilterPolicy.
                filter_policy=le_advertising_facade.AdvertisingFilterPolicy.
                ALL_DEVICES)
                ALL_DEVICES)