Skip to content

Commit

Permalink
update docs tests for other adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Sep 1, 2020
1 parent 5e2329d commit 0880779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/060_persist_docs_tests/test_persist_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0880779

Please sign in to comment.