Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeshmukh15 committed Feb 29, 2024
1 parent 0ab9a08 commit dd36684
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_all_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ def test_run(self):
# Documentation: https://shopify.dev/api/admin-rest/2021-10/resources/order#resource_object
# https://jira.talendforge.org/browse/TDL-15985
# total_price_usd showing up in syncd records Sep 2023, still missing from docs
bad_schema_fields = {'order_adjustments', 'taxExempt', 'poNumber'}
expected_all_keys = expected_all_keys - bad_schema_fields
bad_schema_fields = {'order_adjustments'}
missing_fields = {'taxExempt', 'poNumber'}
expected_all_keys = expected_all_keys - bad_schema_fields - missing_fields

self.assertSetEqual(expected_all_keys, actual_all_keys)

0 comments on commit dd36684

Please sign in to comment.