Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/unit/test_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ def test_load_chunks_omits_policy_tags(
"my-project.my_dataset.my_table"
)
schema = {
"fields": [{"name": "col1", "type": "INT64", "policyTags": ["tag1", "tag2"]}]
"fields": [
{"name": "col1", "type": "INT64", "policyTags": {"names": ["tag1", "tag2"]}}
]
}

_ = list(load.load_chunks(mock_bigquery_client, df, destination, schema=schema))
Expand Down