Adapt tests for minSdk 24

This commit is contained in:
Torsten Grote
2025-09-15 11:30:11 -03:00
committed by Torsten Grote
parent bdb4649a8e
commit 90c28b6bce
2 changed files with 2 additions and 7 deletions

View File

@@ -34,12 +34,10 @@ import java.util.jar.JarOutputStream;
* This test the JAR signing functions of {@link ZipSigner}.
*/
@RunWith(RobolectricTestRunner.class)
@Config(sdk = {23, 25, 32}) // minSdkVersion, targetSdkVersion, max SDK supported by Robolectric
@Config(sdk = {24, 25, 32, 35}) // minSdkVersion, targetSdkVersion, max SDK supported by Robolectric
public class ZipSignerTest {
public static final String TAG = "ZipSignerTest";
private File unsigned;
private File signed;
@Before
public void setUp() {
@@ -64,9 +62,6 @@ public class ZipSignerTest {
if (unsigned != null) {
unsigned.delete();
}
if (signed != null) {
signed.delete();
}
}
@Test

View File

@@ -31,7 +31,7 @@ import java.util.jar.JarFile;
import java.util.jar.JarOutputStream;
@RunWith(RobolectricTestRunner.class)
@Config(sdk = {23, 25, 32}) // minSdkVersion, targetSdkVersion, max SDK supported by Robolectric
@Config(sdk = {24, 25, 32, 35}) // minSdkVersion, targetSdkVersion, max SDK supported by Robolectric
public class LocalRepoKeyStoreTest {
@Test