Skip to content

Commit

Permalink
Fixed All fields test.
Browse files Browse the repository at this point in the history
  • Loading branch information
shantanu73 committed Apr 22, 2024
1 parent 9edf65f commit 2adcb11
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/test_all_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ class IntercomAllFields(IntercomBaseTest):
# Fields for which we cannot generate data
fields_to_remove = {
'company_attributes': {
'options'
'options',
'admin_id'
},
'companies': {
'size',
Expand All @@ -32,7 +33,8 @@ class IntercomAllFields(IntercomBaseTest):
'admin_ids'
},
'contact_attributes': {
'options'
'options',
'admin_id'
}
}
@staticmethod
Expand All @@ -45,9 +47,8 @@ def test_run(self):
• Verify that more than just the automatic fields are replicated for each stream.
• verify all fields for each stream are replicated
"""
# Created card for untestable/unstable streams.
# FIX CARD: https://jira.talendforge.org/browse/TDL-17035
untestable_streams = {"segments"}
# Streams for which we cannot generate data
untestable_streams = {"segments", "tags", "contacts", "company_segments", "conversation_parts", "companies", "conversations"}
expected_streams = self.expected_streams().difference(untestable_streams)

# instantiate connection
Expand Down

0 comments on commit 2adcb11

Please sign in to comment.