Skip to content

Commit

Permalink
Merge pull request #3 from oaknorthbank/fixes
Browse files Browse the repository at this point in the history
Fixes for CI failures in dbt-labs/dbt-core
  • Loading branch information
tomwphillips authored Oct 3, 2024
2 parents 0448e6e + 5c767c3 commit b1ae003
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/dbt/parser/schema_generic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def get_hashable_md(data: Union[str, int, float, List, Dict]) -> Union[str, List
"column_name": column_name,
"checksum": FileHash.empty().to_dict(omit_none=True),
"file_key_name": file_key_name,
"meta": target.config.get('meta', {}) if hasattr(target, 'config') else {},
"meta": target.config.get("meta", {}) if hasattr(target, "config") else {},
}
try:
GenericTestNode.validate(dct)
Expand Down
6 changes: 3 additions & 3 deletions tests/functional/artifacts/expected_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,7 @@ def expected_versions_manifest(project):
"schema": test_audit_schema,
"database": project.database,
"tags": [],
"meta": {},
"meta": {"size": "large", "color": "blue"},
"unique_id": "test.test.unique_versioned_model_v1_first_name.6138195dec",
"docs": {"node_color": None, "show": True},
"compiled": True,
Expand Down Expand Up @@ -1813,7 +1813,7 @@ def expected_versions_manifest(project):
"schema": test_audit_schema,
"database": project.database,
"tags": [],
"meta": {},
"meta": {"color": "blue", "size": "large"},
"unique_id": "test.test.unique_versioned_model_v1_count.0b4c0b688a",
"docs": {"node_color": None, "show": True},
"compiled": True,
Expand Down Expand Up @@ -1866,7 +1866,7 @@ def expected_versions_manifest(project):
"schema": test_audit_schema,
"database": project.database,
"tags": [],
"meta": {},
"meta": {"color": "blue", "size": "large"},
"unique_id": "test.test.unique_versioned_model_v2_first_name.998430d28e",
"docs": {"node_color": None, "show": True},
"compiled": True,
Expand Down

0 comments on commit b1ae003

Please sign in to comment.