Update string for bluetooth device visibility

Change-Id: I33baa5e72596e10f10f13d2324144ca9036c3fc9
Fix: 62891178
Test: visual
Test: robotests
This commit is contained in:
Fan Zhang
2017-07-24 10:52:23 -07:00
parent 5e48ea193b
commit 358d30f093
2 changed files with 3 additions and 2 deletions

View File

@@ -72,8 +72,9 @@ public class BluetoothDeviceNamePreferenceControllerTest {
mController.updateDeviceName(mPreference, DEVICE_NAME);
final CharSequence summary = mPreference.getSummary();
assertThat(summary.toString())
.isEqualTo("Visible as 'Nightshade' to other devices");
.isEqualTo("Visible as \"Nightshade\" to other devices");
assertThat(mPreference.isSelectable()).isFalse();
}