[Cleanup] remove flag enable_bonded_bluetooth_device_searchable

the feature is enabled in prod already

Test: atest ConnectedDeviceGroupControllerTest
Bug: N/A
Change-Id: I7b2674bd42ed0a3bbe03c74ff52c3ccd830178dc
Flag: EXEMPT just cleanup
This commit is contained in:
yqian
2025-01-20 16:56:47 +08:00
committed by Yuanru Qian
parent 1436ea1351
commit 4dfe488d8b
3 changed files with 0 additions and 16 deletions

View File

@@ -344,7 +344,6 @@ public class ConnectedDeviceGroupControllerTest {
}
@Test
@EnableFlags(Flags.FLAG_ENABLE_BONDED_BLUETOOTH_DEVICE_SEARCHABLE)
public void updateDynamicRawDataToIndex_deviceNotBonded_deviceIsNotSearchable() {
when(mDevice.getBondState()).thenReturn(BluetoothDevice.BOND_NONE);
List<SearchIndexableRaw> searchData = new ArrayList<>();
@@ -355,7 +354,6 @@ public class ConnectedDeviceGroupControllerTest {
}
@Test
@EnableFlags(Flags.FLAG_ENABLE_BONDED_BLUETOOTH_DEVICE_SEARCHABLE)
public void updateDynamicRawDataToIndex_deviceBonded_deviceIsSearchable() {
when(mDevice.getBondState()).thenReturn(BluetoothDevice.BOND_BONDED);
List<SearchIndexableRaw> searchData = new ArrayList<>();