From 088077934a8c7da2d413db7b1e7d7a7a0e3e5e10 Mon Sep 17 00:00:00 2001 From: Gerda Shank Date: Tue, 1 Sep 2020 12:23:08 -0400 Subject: [PATCH] update docs tests for other adapters --- test/integration/060_persist_docs_tests/test_persist_docs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/060_persist_docs_tests/test_persist_docs.py b/test/integration/060_persist_docs_tests/test_persist_docs.py index 00e06c1e2ff..08f696db41d 100644 --- a/test/integration/060_persist_docs_tests/test_persist_docs.py +++ b/test/integration/060_persist_docs_tests/test_persist_docs.py @@ -125,7 +125,7 @@ def test_redshift_late_binding_view(self): with open('target/catalog.json') as fp: catalog_data = json.load(fp) assert 'nodes' in catalog_data - assert len(catalog_data['nodes']) == 3 + assert len(catalog_data['nodes']) == 4 table_node = catalog_data['nodes']['model.test.table_model'] view_node = self._assert_has_table_comments(table_node) @@ -226,7 +226,7 @@ def test_bigquery_persist_docs(self): with open('target/catalog.json') as fp: catalog_data = json.load(fp) assert 'nodes' in catalog_data - assert len(catalog_data['nodes']) == 3 # seed, table, and view model + assert len(catalog_data['nodes']) == 4 # seed, table, and view model for node_id in ['table_model_nested', 'view_model_nested']: # check the descriptions using the api