Skip to content

Commit f4bf8ef

Browse files
committed
Tweak test conditions
1 parent ede7110 commit f4bf8ef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

instrumentation/core/src/test/java/de/mannodermaus/junit5/condition/DisabledOnSdkVersionIntegrationTests.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ class DisabledOnSdkVersionIntegrationTests {
2929
}
3030

3131
@Disabled("Used by DisabledOnSdkVersionConditionTests only")
32-
@DisabledOnSdkVersion(from = 24, until = 29)
32+
@DisabledOnSdkVersion(from = 24, until = 35)
3333
@Test
3434
fun disabledBecauseApiIsInValidRange() {
3535
}
3636

3737
@Disabled("Used by DisabledOnSdkVersionConditionTests only")
38-
@DisabledOnSdkVersion(from = 27)
38+
@DisabledOnSdkVersion(from = 36)
3939
@Test
4040
fun enabledBecauseMinApiLowEnough() {
4141
}

instrumentation/core/src/test/java/de/mannodermaus/junit5/condition/EnabledOnSdkVersionIntegrationTests.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ class EnabledOnSdkVersionIntegrationTests {
2929
}
3030

3131
@Disabled("Used by EnabledOnSdkVersionConditionTests only")
32-
@EnabledOnSdkVersion(from = 24, until = 29)
32+
@EnabledOnSdkVersion(from = 24, until = 36)
3333
@Test
3434
fun enabledBecauseApiIsInValidRange() {
3535
}
3636

3737
@Disabled("Used by EnabledOnSdkVersionConditionTests only")
38-
@EnabledOnSdkVersion(from = 27)
38+
@EnabledOnSdkVersion(from = 36)
3939
@Test
4040
fun disabledBecauseMinApiTooLow() {
4141
}

0 commit comments

Comments
 (0)