| Index: content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java
|
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java b/content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java
|
| index e379e0d79f9c4896e241b65cf4c647504eef253b..98d643774169c49dc128bdb98ef6916bca9e868b 100644
|
| --- a/content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java
|
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java
|
| @@ -6,7 +6,8 @@ package org.chromium.content.browser.crypto;
|
|
|
| import android.os.Bundle;
|
| import android.support.test.filters.MediumTest;
|
| -import android.test.InstrumentationTestCase;
|
| +
|
| +import junit.framework.TestCase;
|
|
|
| import org.chromium.base.ThreadUtils;
|
| import org.chromium.content.browser.crypto.CipherFactory.CipherDataObserver;
|
| @@ -24,7 +25,7 @@ import javax.crypto.Cipher;
|
| * Tests that confirm that the class is thread-safe would require putting potentially flaky hooks
|
| * throughout the class to simulate artificial blockages.
|
| */
|
| -public class CipherFactoryTest extends InstrumentationTestCase {
|
| +public class CipherFactoryTest extends TestCase {
|
| private static final byte[] INPUT_DATA = {1, 16, 84};
|
|
|
| /** Generates non-random byte[] for testing. */
|
|
|