Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
vkedia committed Mar 8, 2017
1 parent 96a69f5 commit 8c5a6ec
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,9 @@ public void listPagination() throws Exception {

String instanceId = testHelper.getInstanceId().getInstance();
for (String dbId : dbIds) {
dbs.add(dbAdminClient.createDatabase(instanceId, dbId, ImmutableList.<String>of()).waitFor()
.getResult());
dbs.add(dbAdminClient.createDatabase(instanceId, dbId, ImmutableList.<String>of())
.waitFor()
.getResult());
}
Page<Database> page = dbAdminClient.listDatabases(instanceId, Options.pageSize(1));
List<String> dbIdsGot = new ArrayList<>();
Expand Down

0 comments on commit 8c5a6ec

Please sign in to comment.