Remove ShadowLog references from tests

These were accidentally submitted after being added for local debugging.

PiperOrigin-RevId: 636865825
This commit is contained in:
ibaker 2024-05-24 04:07:38 -07:00 committed by Copybara-Service
parent db6144e7dd
commit 08d1eb4376
3 changed files with 0 additions and 11 deletions

View File

@ -43,7 +43,6 @@ import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.shadows.ShadowLog;
/** Tests {@link DownloadManager}. */
@RunWith(AndroidJUnit4.class)
@ -74,7 +73,6 @@ public class DownloadManagerTest {
@Before
public void setUp() throws Exception {
ShadowLog.stream = System.out;
testThread = new DummyMainThread();
setupDownloadManager(/* maxParallelDownloads= */ 100);
}

View File

@ -55,7 +55,6 @@ import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.MockitoAnnotations;
import org.robolectric.shadows.ShadowLog;
/** Tests {@link DownloadManager}. */
@RunWith(AndroidJUnit4.class)
@ -75,7 +74,6 @@ public class DownloadManagerDashTest {
@Before
public void setUp() throws Exception {
ShadowLog.stream = System.out;
testThread = new DummyMainThread();
Context context = ApplicationProvider.getApplicationContext();
tempFolder = Util.createTempDirectory(context, "ExoPlayerTest");

View File

@ -38,10 +38,8 @@ import com.google.common.collect.Iterables;
import com.google.common.primitives.Bytes;
import com.google.common.primitives.UnsignedBytes;
import java.nio.ByteBuffer;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.shadows.ShadowLog;
/** Tests for {@link Cea708Decoder}. */
@RunWith(AndroidJUnit4.class)
@ -51,11 +49,6 @@ public class Cea708DecoderTest {
private static final byte CHANNEL_PACKET_DATA = 0x6;
private static final byte CHANNEL_PACKET_END = 0x2;
@Before
public void setupLogging() {
ShadowLog.stream = System.out;
}
@Test
public void singleServiceAndWindowDefinition() throws Exception {
Cea708Decoder cea708Decoder =