Correct typo in comment and inclusive language

Bug: 224323976
Test: atest HearingAidProfileTest
Change-Id: I8e6d9b5954b3cd63625bfc701276ce6456b8f249
diff --git a/tests/tests/bluetooth/src/android/bluetooth/cts/HearingAidProfileTest.java b/tests/tests/bluetooth/src/android/bluetooth/cts/HearingAidProfileTest.java
index 570633e..7a227fc 100644
--- a/tests/tests/bluetooth/src/android/bluetooth/cts/HearingAidProfileTest.java
+++ b/tests/tests/bluetooth/src/android/bluetooth/cts/HearingAidProfileTest.java
@@ -134,17 +134,18 @@
         assertTrue(mIsProfileReady);
         assertNotNull(mService);
 
-        // Create a dummy device
+        // Create a fake device
         BluetoothDevice device = mBluetoothAdapter.getRemoteDevice("00:11:22:AA:BB:CC");
         assertNotNull(device);
 
         int connectionState = mService.getConnectionState(device);
-        // Dummy device should be disconnected
+        // Fake device should be disconnected
         assertEquals(connectionState, BluetoothProfile.STATE_DISCONNECTED);
     }
 
     /**
-     * Basic test case to make sure that a fictional device is disconnected.
+     * Basic test case to make sure that a fictional device throw a SecurityException when setting
+     * volume.
      */
     @MediumTest
     public void test_setVolume() {