Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed May 8, 2021
1 parent 33a607c commit 6879880
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/unit/test_contracts_graph_parsed.py
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ def basic_parsed_schema_test_dict():
'tags': [],
'vars': {},
'severity': 'ERROR',
'schema': 'dbt_test__audit',
},
'docs': {'show': True},
'columns': {},
Expand Down Expand Up @@ -1016,7 +1017,7 @@ def basic_parsed_schema_test_object():
depends_on=DependsOn(),
description='',
database='test_db',
schema='test_schema_dbt_test__audit',
schema='test_schema',
alias='bar',
tags=[],
meta={},
Expand Down Expand Up @@ -1059,7 +1060,8 @@ def complex_parsed_schema_test_dict():
'tags': [],
'vars': {},
'severity': 'WARN',
'extra_key': 'extra value'
'extra_key': 'extra value',
'schema': 'dbt_test__audit',
},
'docs': {'show': False},
'columns': {
Expand Down

0 comments on commit 6879880

Please sign in to comment.