Use proper string formatting for the "Active device" string

Updated testContextMock() how it checks the bluetooth_connected string.

Bug: 72317067
Test: Unit test updated:
      make ROBOTEST_FILTER=BluetoothDetailsHeaderControllerTest \
                           RunSettingsRoboTests
      Manual: two headsets and switching the active device
Change-Id: I3db178d71543e4dfa437544350c58241860ae703
This commit is contained in:
Pavlin Radoslavov
2018-02-07 17:23:12 -08:00
parent 5135ed23c2
commit b58b006e44

View File

@@ -80,7 +80,7 @@ public class BluetoothDetailsHeaderControllerTest extends BluetoothDetailsContro
*/
@Test
public void testContextMock() {
assertThat(mContext.getString(R.string.bluetooth_connected)).isEqualTo("Connected");
assertThat(mContext.getString(R.string.bluetooth_connected)).isNotNull();
}
@Test