diff --git a/tests/test_partitioning.py b/tests/test_partitioning.py index 0d2ebe2..abdb1a3 100644 --- a/tests/test_partitioning.py +++ b/tests/test_partitioning.py @@ -140,7 +140,7 @@ def flatten_ga_data_check_output_schema(self, table_type="flat_events"): self.assertEqual("event_date", table_partitioned.time_partitioning._properties['field']) # verify date field - self.assertEqual(SchemaField('event_date', 'DATE', 'NULLABLE', None, (), None), table_partitioned.schema[0]) + self.assertEqual(SchemaField('event_date', 'DATE', 'NULLABLE', None, None, (), None), table_partitioned.schema[0]) # extract info about sharded output table_name_sharded = f"{self.ga_source.gcp_project}.{self.ga_source.dataset}.{table_type}_{self.ga_source.date_shard}"