Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbernstein2 committed Nov 7, 2018
1 parent e022d29 commit c1e445a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ public void testExistsFalse() {
new NotFoundException("fake-error", null, GrpcStatusCode.of(Status.Code.NOT_FOUND), false);

Mockito.when(mockGetInstanceCallable.futureCall(Matchers.any(GetInstanceRequest.class)))
.thenReturn(ApiFutures.immediateFailedFuture(exception));
.thenReturn(ApiFutures.<com.google.bigtable.admin.v2.Instance>immediateFailedFuture(exception));

// Execute
boolean found = adminClient.exists(INSTANCE_NAME.getInstance());
Expand Down

0 comments on commit c1e445a

Please sign in to comment.