aboutsummaryrefslogtreecommitdiff
path: root/robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java')
-rw-r--r--robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java b/robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java
index 93a5d5dfc..7039d7658 100644
--- a/robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java
+++ b/robolectric/src/test/java/org/robolectric/shadows/ShadowBluetoothDeviceTest.java
@@ -614,7 +614,6 @@ public class ShadowBluetoothDeviceTest {
}
@Test
- @Config(minSdk = VERSION_CODES.KITKAT_WATCH)
public void setDeviceConnected_isConnected() {
shadowOf(application).grantPermissions(BLUETOOTH_CONNECT);
BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS);
@@ -625,7 +624,6 @@ public class ShadowBluetoothDeviceTest {
}
@Test
- @Config(minSdk = VERSION_CODES.KITKAT_WATCH)
public void setDeviceNotConnected_isNotConnected() {
shadowOf(application).grantPermissions(BLUETOOTH_CONNECT);
BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS);
@@ -636,7 +634,6 @@ public class ShadowBluetoothDeviceTest {
}
@Test
- @Config(minSdk = VERSION_CODES.KITKAT_WATCH)
public void notSetDeviceNotConnected_isNotConnectedByDefault() {
shadowOf(application).grantPermissions(BLUETOOTH_CONNECT);
BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS);