Skip to content

Commit b3bad78

Browse files
committed
Fixed GrpcAsyncRetryerTest failure
1 parent 7f57a2a commit b3bad78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

temporal-serviceclient/src/test/java/io/temporal/internal/retryer/GrpcAsyncRetryerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ public void testMessageLargerThanMaxFailureAsync() throws InterruptedException {
429429
.retry()
430430
.get());
431431
assertTrue(e.getCause() instanceof GrpcMessageTooLargeException);
432-
assertEquals(Status.Code.RESOURCE_EXHAUSTED + ": " + description, e.getMessage());
432+
assertEquals(Status.Code.RESOURCE_EXHAUSTED + ": " + description, e.getCause().getMessage());
433433
}
434434
}
435435
}

0 commit comments

Comments
 (0)