Bluetooth: Set ASHA to be enabled by default if BLE is supported

Bug: 276387432
Test: atest CtsBluetoothTestCases:android.bluetooth.cts.BluetoothCddTest#test_C_3_BleRequirements
Change-Id: I87e3723051fbe40d8d7e3eae84e9080ec92051aa
diff --git a/tests/tests/bluetooth/bluetoothTestUtilLib/src/android/bluetooth/cts/TestUtils.java b/tests/tests/bluetooth/bluetoothTestUtilLib/src/android/bluetooth/cts/TestUtils.java
index 03de0d5..8649314 100644
--- a/tests/tests/bluetooth/bluetoothTestUtilLib/src/android/bluetooth/cts/TestUtils.java
+++ b/tests/tests/bluetooth/bluetoothTestUtilLib/src/android/bluetooth/cts/TestUtils.java
@@ -79,7 +79,10 @@
             case BluetoothProfile.HEADSET_CLIENT:
                 return BluetoothProperties.isProfileHfpHfEnabled().orElse(false);
             case BluetoothProfile.HEARING_AID:
-                return BluetoothProperties.isProfileAshaCentralEnabled().orElse(false);
+                if (!isBleSupported(InstrumentationRegistry.getInstrumentation().getContext())) {
+                    return false;
+                }
+                return BluetoothProperties.isProfileAshaCentralEnabled().orElse(true);
             case BluetoothProfile.HID_DEVICE:
                 return BluetoothProperties.isProfileHidDeviceEnabled().orElse(false);
             case BluetoothProfile.HID_HOST: