Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import static org.junit.Assert.assertArrayEquals;

import android.os.Build;
import com.google.firebase.storage.internal.AdaptiveStreamBuffer;
import java.io.ByteArrayInputStream;
import java.io.IOException;
Expand All @@ -30,7 +29,7 @@

/** Tests for {@link AdaptiveStreamBuffer}. */
@RunWith(RobolectricTestRunner.class)
@Config(sdk = Build.VERSION_CODES.LOLLIPOP_MR1)
@Config(sdk = Config.OLDEST_SDK)
public class AdaptiveStreamBufferTest {

@Rule public RetryRule retryRule = new RetryRule(3);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

package com.google.firebase.storage;

import android.os.Build;
import com.google.android.gms.tasks.Task;
import java.lang.reflect.Method;
import java.util.ArrayList;
Expand All @@ -29,7 +28,7 @@

/** Tests for {@link FirebaseStorage}. */
@RunWith(RobolectricTestRunner.class)
@Config(sdk = Build.VERSION_CODES.LOLLIPOP_MR1)
@Config(sdk = Config.OLDEST_SDK)
public class DependencyTest {

@Rule public RetryRule retryRule = new RetryRule(3);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import static com.google.firebase.common.testutil.Assert.assertThrows;

import android.os.Build;
import androidx.test.core.app.ApplicationProvider;
import com.google.android.gms.tasks.Task;
import com.google.firebase.FirebaseApp;
Expand All @@ -38,7 +37,7 @@

/** Tests for {@link FirebaseStorage}. */
@RunWith(RobolectricTestRunner.class)
@Config(sdk = Build.VERSION_CODES.LOLLIPOP_MR1)
@Config(sdk = Config.OLDEST_SDK)
public class StorageReferenceTest {

@Rule public RetryRule retryRule = new RetryRule(3);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import static com.google.firebase.common.testutil.Assert.assertThrows;

import android.os.Build;
import com.google.firebase.storage.StreamDownloadTask.StreamProgressWrapper;
import com.google.firebase.storage.network.MockInputStreamHelper;
import java.io.ByteArrayInputStream;
Expand All @@ -35,7 +34,7 @@

/** Tests for {@link StreamProgressWrapper}. */
@RunWith(RobolectricTestRunner.class)
@Config(sdk = Build.VERSION_CODES.LOLLIPOP_MR1)
@Config(sdk = Config.OLDEST_SDK)
@SuppressWarnings("ResultOfMethodCallIgnored")
public class StreamProgressWrapperTest {

Expand Down
Loading