Skip to content

Commit ed88849

Browse files
committed
debug IT Error
1 parent 36927d9 commit ed88849

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@ public void testConnectTimeoutAuthorizedGet() throws FirebaseException {
102102
fail("No exception thrown for HTTP error response");
103103
} catch (FirebaseException e) {
104104
assertEquals(ErrorCode.UNKNOWN, e.getErrorCode());
105+
106+
System.out.println(e.getCause());
107+
System.out.println(e.getCause().getMessage());
108+
System.out.println(e.getCause().getCause());
109+
System.out.println(e.getCause().getCause().getMessage());
105110
assertEquals("IO error: Connection Timeout", e.getMessage());
106111
assertNull(e.getHttpResponse());
107112
}

0 commit comments

Comments
 (0)