aboutsummaryrefslogtreecommitdiff
path: root/robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java')
-rw-r--r--robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java b/robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java
index 58d219cf7..61cbb18c1 100644
--- a/robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java
+++ b/robolectric/src/test/java/org/robolectric/shadows/ShadowPendingIntentTest.java
@@ -894,7 +894,6 @@ public class ShadowPendingIntentTest {
}
@Test
- @Config(minSdk = Build.VERSION_CODES.JELLY_BEAN_MR1)
public void testGetCreatorPackage_nothingSet() {
PendingIntent pendingIntent = PendingIntent.getActivity(context, 99, new Intent("activity"), 0);
assertThat(pendingIntent.getCreatorPackage()).isEqualTo(context.getPackageName());
@@ -902,7 +901,6 @@ public class ShadowPendingIntentTest {
}
@Test
- @Config(minSdk = Build.VERSION_CODES.JELLY_BEAN_MR1)
public void testGetCreatorPackage_explicitlySetPackage() {
String fakePackage = "some.fake.package";
PendingIntent pendingIntent = PendingIntent.getActivity(context, 99, new Intent("activity"), 0);
@@ -912,7 +910,6 @@ public class ShadowPendingIntentTest {
}
@Test
- @Config(minSdk = Build.VERSION_CODES.JELLY_BEAN_MR1)
public void testGetCreatorUid() {
int fakeUid = 123;
PendingIntent pendingIntent = PendingIntent.getActivity(context, 99, new Intent("activity"), 0);
@@ -972,7 +969,6 @@ public class ShadowPendingIntentTest {
}
@Test
- @Config(minSdk = Build.VERSION_CODES.JELLY_BEAN)
public void toString_doesNotNPE() {
assertThat(
PendingIntent.getBroadcast(