From 1a9b233d3de050699e88eee11b67fe2250bd8f96 Mon Sep 17 00:00:00 2001 From: "Daniel W. Anner" Date: Wed, 19 Jul 2023 12:11:11 -0400 Subject: [PATCH] Update definitions_test.py Correcting schema mapping issue --- tests/definitions_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/definitions_test.py b/tests/definitions_test.py index 3409b03a..82029395 100644 --- a/tests/definitions_test.py +++ b/tests/definitions_test.py @@ -63,7 +63,7 @@ def _get_diff_from_upstream(): if file.change_type in CHANGE_TYPE_LIST: if path in file.a_path: file_list.append((file.a_path, schema)) - else: + elif path in file.b_path: file_list.append((file.b_path, schema)) return file_list