File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2626,12 +2626,12 @@ void testListTables() {
26262626 @ Test
26272627 void testListTablesWithPartitioning () {
26282628 long expirationMs = 86400000L ;
2629- Type paritionType = Type .DAY ;
2629+ Type partitionType = Type .DAY ;
26302630 String tableName = "test_list_tables_partitioning" ;
26312631 StandardTableDefinition tableDefinition =
26322632 StandardTableDefinition .newBuilder ()
26332633 .setSchema (TABLE_SCHEMA )
2634- .setTimePartitioning (TimePartitioning .of (paritionType , expirationMs ))
2634+ .setTimePartitioning (TimePartitioning .of (partitionType , expirationMs ))
26352635 .build ();
26362636 TableInfo tableInfo = TableInfo .of (TableId .of (DATASET , tableName ), tableDefinition );
26372637 Table createdPartitioningTable = bigquery .create (tableInfo );
@@ -2654,7 +2654,7 @@ void testListTablesWithPartitioning() {
26542654 TimePartitioning timePartitioning = standardTableDefinition .getTimePartitioning ();
26552655 assertNotNull (timePartitioning );
26562656 assertNotNull (timePartitioning .getExpirationMs ());
2657- if (timePartitioning .getType ().equals (paritionType )
2657+ if (timePartitioning .getType ().equals (partitionType )
26582658 && timePartitioning .getExpirationMs ().equals (expirationMs )) {
26592659 found = true ;
26602660 break ;
You can’t perform that action at this time.
0 commit comments