From ad53f765b39b38ccf84683f4fa9ff2aa51a50cfc Mon Sep 17 00:00:00 2001 From: bhtowles Date: Fri, 15 Sep 2023 08:29:47 -0500 Subject: [PATCH] Update all fields with old/new field from schema (#177) --- tests/test_all_fields.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_all_fields.py b/tests/test_all_fields.py index ba42cca..fd2768b 100644 --- a/tests/test_all_fields.py +++ b/tests/test_all_fields.py @@ -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)