From edd270be67e9a74eaec7088e7f723db1f540ea25 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Thu, 7 Apr 2022 13:13:34 -0500 Subject: [PATCH] fixed next failing unit test --- test/unit/test_contracts_graph_unparsed.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/unit/test_contracts_graph_unparsed.py b/test/unit/test_contracts_graph_unparsed.py index f82e617f55c..c4df44f7100 100644 --- a/test/unit/test_contracts_graph_unparsed.py +++ b/test/unit/test_contracts_graph_unparsed.py @@ -308,6 +308,7 @@ def test_table_defaults(self): to_dict = { 'name': 'foo', 'description': '', + 'config': {}, 'loader': '', 'freshness': {'error_after': {}, 'warn_after': {}}, 'quoting': {}, @@ -316,6 +317,7 @@ def test_table_defaults(self): { 'name': 'table1', 'description': '', + 'config': {}, 'docs': {'show': True}, 'tests': [], 'columns': [], @@ -327,6 +329,7 @@ def test_table_defaults(self): { 'name': 'table2', 'description': 'table 2', + 'config': {}, 'docs': {'show': True}, 'tests': [], 'columns': [],