Skip to content

Commit

Permalink
fix: unit test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanBergenov committed Nov 1, 2023
1 parent c1ff835 commit cea4b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_partitioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit cea4b97

Please sign in to comment.