JUnit 3 -> 4: replace import of junit.framework.Assert with org.junit.Assert.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1437578 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-01-23 17:20:11 +00:00
parent 79c1aa0b5d
commit 79a3325bda
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ import java.util.concurrent.ExecutorService;
import java.util.concurrent.RejectedExecutionException; import java.util.concurrent.RejectedExecutionException;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import junit.framework.Assert; import org.junit.Assert;
import org.apache.http.Header; import org.apache.http.Header;
import org.apache.http.HttpHost; import org.apache.http.HttpHost;

View File

@ -29,7 +29,7 @@ package org.apache.http.impl.client.cache;
import java.io.File; import java.io.File;
import java.util.Date; import java.util.Date;
import junit.framework.Assert; import org.junit.Assert;
import org.apache.http.HttpHost; import org.apache.http.HttpHost;
import org.apache.http.HttpResponse; import org.apache.http.HttpResponse;

View File

@ -29,7 +29,7 @@ package org.apache.http.impl.client.cache;
import java.net.SocketTimeoutException; import java.net.SocketTimeoutException;
import java.util.Date; import java.util.Date;
import junit.framework.Assert; import org.junit.Assert;
import org.apache.http.HttpResponse; import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus; import org.apache.http.HttpStatus;