Skip to content

Commit

Permalink
Fix missing colon
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaudy committed Jan 7, 2025
1 parent 79c8994 commit d0abcd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/tests/test_table_data_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def test_make_partitioned_table_without_partition_schema(self):
data_service = TableDataService(backend)
partitioned_table = data_service.make_partitioned_table(TableKeyImpl("test"), refreshing=False)
self.assertIsNotNone(partitioned_table)
for constituent_table in partitioned_table.constituent_tables
for constituent_table in partitioned_table.constituent_tables:
self.assertEqual(constituent_table.columns, self.test_table.columns)

def test_make_static_table_with_partition_schema(self):
Expand Down

0 comments on commit d0abcd9

Please sign in to comment.