Skip to content

Commit

Permalink
Fixed an unfinished assertion (googleapis#2383)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkedia committed Aug 25, 2017
1 parent 815f437 commit 9de2fce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void updateDatabaseDdl() {
com.google.longrunning.Operation.newBuilder().setDone(true).setName(opName).build());
Operation<Void, UpdateDatabaseDdlMetadata> op =
client.updateDatabaseDdl(INSTANCE_ID, DB_ID, ddl, opId);
assertThat(op.isDone());
assertThat(op.isDone()).isTrue();
assertThat(op.getName()).isEqualTo(opName);
}

Expand Down

0 comments on commit 9de2fce

Please sign in to comment.