Skip to content

Commit 34308a5

Browse files
Update test expectations for schedule key_properties change from [id, project-slug] to [id, project_id]
- Updated tests/base.py to expect primary_keys: {id, project_id} for schedule stream - This aligns with the schema change adding project_id field - Fixes test failures: test_all_fields, test_automatic_fields, test_bookmark, test_discovery, test_interrupted_sync, test_start_date Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent deea7dc commit 34308a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def expected_metadata(self):
101101
self.PARENT_TAP_STREAM_ID: "collaborations",
102102
},
103103
"schedule": {
104-
self.PRIMARY_KEYS: {"id"},
104+
self.PRIMARY_KEYS: {"id", "project_id"},
105105
self.REPLICATION_METHOD: self.INCREMENTAL,
106106
self.OBEYS_START_DATE: True,
107107
self.REPLICATION_KEYS: {"updated-at"},

0 commit comments

Comments
 (0)