8000 Use simple class name. · keepfit/google-http-java-client@65fca76 · GitHub
[go: up one dir, main page]

Skip to content

Commit 65fca76

Browse files
Matt Whisenhnuntmattwhisenhunt
authored andcommitted
Use simple class name.
1 parent 4b5f59e commit 65fca76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

google-http-client/src/test/java/com/google/api/client/http/apache/ApacheHttpTransportTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import com.google.api.client.util.StringUtils;
1919

2020
import junit.framework.TestCase;
21+
import org.apache.http.HttpResponse;
2122
import org.apache.http.HttpVersion;
2223
import org.apache.http.client.HttpClient;
2324
import org.apache.http.client.methods.HttpUriRequest;
@@ -53,7 +54,7 @@ public void testNewDefaultHttpClient() {
5354

5455
public void testRequestsWithContent() throws Exception {
5556
HttpClient mockClient = mock(HttpClient.class);
56-
org.apache.http.HttpResponse mockResponse = mock(org.apache.http.HttpResponse.class);
57+
HttpResponse mockResponse = mock(HttpResponse.class);
5758
when(mockClient.execute(any(HttpUriRequest.class))).thenReturn(mockResponse);
5859

5960
ApacheHttpTransport transport = new ApacheHttpTransport(mockClient);

0 commit comments

Comments
 (0)
0