Skip to content

Commit 0c37ba4

Browse files
committed
debug
1 parent 5797b48 commit 0c37ba4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/com/google/firebase/internal/ApacheHttp2TransportIT.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ public void testUnauthorizedPostRequest() throws FirebaseException {
9595
public void testConnectTimeoutGet() throws IOException {
9696
HttpTransport transport = new ApacheHttp2Transport();
9797
try {
98-
transport.createRequestFactory().buildGetRequest(new GenericUrl(NO_CONNECT_URL)).setConnectTimeout(100).execute();
98+
transport.createRequestFactory().buildGetRequest(new GenericUrl(NO_CONNECT_URL))
99+
.setConnectTimeout(100).execute();
99100
fail("No exception thrown for HTTP error response");
100101
} catch (IOException e) {
101102
System.out.println(e.getCause());

0 commit comments

Comments
 (0)