| Index: webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
|
| diff --git a/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java b/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
|
| index ee3b7c4656a369d46fb7f18b15af276aae85d687..26ad536adf51b4f5edad8e80ba66b09a1b925f47 100644
|
| --- a/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
|
| +++ b/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
|
| @@ -10,9 +10,6 @@
|
|
|
| package org.appspot.apprtc;
|
|
|
| -import android.util.Log;
|
| -
|
| -import org.appspot.apprtc.util.RobolectricLooperExecutor;
|
| import org.junit.Before;
|
| import org.junit.Test;
|
| import org.junit.runner.RunWith;
|
| @@ -56,8 +53,8 @@ public class DirectRTCClientTest {
|
| clientEvents = mock(AppRTCClient.SignalingEvents.class);
|
| serverEvents = mock(AppRTCClient.SignalingEvents.class);
|
|
|
| - client = new DirectRTCClient(clientEvents, new RobolectricLooperExecutor());
|
| - server = new DirectRTCClient(serverEvents, new RobolectricLooperExecutor());
|
| + client = new DirectRTCClient(clientEvents);
|
| + server = new DirectRTCClient(serverEvents);
|
| }
|
|
|
| @Test
|
|
|