Skip to content

Commit

Permalink
remove unrelated test case
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 committed Oct 8, 2021
1 parent a5f6d46 commit c92a91b
Showing 1 changed file with 0 additions and 16 deletions.
Expand Up @@ -683,22 +683,6 @@ public void testGetNonExistingTable() {
assertNull(bigquery.getTable(DATASET, "test_get_non_existing_table"));
}

@Test
public void testCreateTableExpiration() {
String tableName = "test_create_table_expiration";
TableId tableId = TableId.of(DATASET, tableName);
try {
StandardTableDefinition tableDefinition = StandardTableDefinition.newBuilder().build();
Table createdTable = bigquery.create(TableInfo.newBuilder(tableId, tableDefinition).build());
assertNotNull(createdTable);
Table updatedTable =
bigquery.update(createdTable.toBuilder().setExpirationTime(null).build());
assertThat(updatedTable.getExpirationTime()).isEqualTo(null);
} finally {
bigquery.delete(tableId);
}
}

@Test
public void testCreateTableWithRangePartitioning() {
String tableName = "test_create_table_rangepartitioning";
Expand Down

0 comments on commit c92a91b

Please sign in to comment.