Skip to content

Commit

Permalink
Update all fields with old/new field from schema (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhtowles authored Sep 15, 2023
1 parent 09c0a67 commit ad53f76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_all_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def test_run(self):
# No field named 'order_adjustments', 'total_price_usd' present in the 'order' object
# Documentation: https://shopify.dev/api/admin-rest/2021-10/resources/order#resource_object
# https://jira.talendforge.org/browse/TDL-15985
bad_schema_fields = {'order_adjustments', 'total_price_usd'}
# total_price_usd showing up in syncd records Sep 2023, still missing from docs
bad_schema_fields = {'order_adjustments'}
expected_all_keys = expected_all_keys - bad_schema_fields

self.assertSetEqual(expected_all_keys, actual_all_keys)

0 comments on commit ad53f76

Please sign in to comment.