We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5797b48 commit 0c37ba4Copy full SHA for 0c37ba4
src/test/java/com/google/firebase/internal/ApacheHttp2TransportIT.java
@@ -95,7 +95,8 @@ public void testUnauthorizedPostRequest() throws FirebaseException {
95
public void testConnectTimeoutGet() throws IOException {
96
HttpTransport transport = new ApacheHttp2Transport();
97
try {
98
- transport.createRequestFactory().buildGetRequest(new GenericUrl(NO_CONNECT_URL)).setConnectTimeout(100).execute();
+ transport.createRequestFactory().buildGetRequest(new GenericUrl(NO_CONNECT_URL))
99
+ .setConnectTimeout(100).execute();
100
fail("No exception thrown for HTTP error response");
101
} catch (IOException e) {
102
System.out.println(e.getCause());
0 commit comments