Revert "Import org.junit.Assert instead of junit.framework.Assert."

This reverts commit a88470964c55dc655022d1f46370565aa3be535f.

It broke Android builds:
app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java:46: error: package org.junit does not exist
import static org.junit.Assert.*;
                       ^
TBR=glaznev@webrtc.org,pthatcher@webrtc.org
BUG=none

Review URL: https://webrtc-codereview.appspot.com/52039004

Cr-Commit-Position: refs/heads/master@{#9357}
This commit is contained in:
Wan-Teh Chang 2015-06-02 14:36:26 -07:00
parent a88470964c
commit 6b990744d9

View File

@ -43,7 +43,7 @@ import java.util.TreeSet;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import static org.junit.Assert.*;
import static junit.framework.Assert.*;
/** End-to-end tests for PeerConnection.java. */
public class PeerConnectionTest {