diff --git a/ingestion/tests/unit/source/test_clickhouse.py b/ingestion/tests/unit/source/test_clickhouse.py index eb731758d3c..9e85144573b 100644 --- a/ingestion/tests/unit/source/test_clickhouse.py +++ b/ingestion/tests/unit/source/test_clickhouse.py @@ -51,9 +51,7 @@ CONFIG = """ "enableDataProfiler": false, "schemaFilterPattern":{ "excludes": ["system.*","information_schema.*","INFORMATION_SCHEMA.*"] - }, - "dbtManifestFilePath": "./examples/sample_data/dbt/manifest_1.0.json", - "dbtCatalogFilePath": "./examples/sample_data/dbt/catalog_1.0.json" + } } } }, diff --git a/ingestion/tests/unit/source/test_vertica.py b/ingestion/tests/unit/source/test_vertica.py index 8635faf963f..95e2cffce76 100644 --- a/ingestion/tests/unit/source/test_vertica.py +++ b/ingestion/tests/unit/source/test_vertica.py @@ -51,9 +51,7 @@ CONFIG = """ "enableDataProfiler": false, "schemaFilterPattern":{ "excludes": ["system.*","information_schema.*","INFORMATION_SCHEMA.*"] - }, - "dbtManifestFilePath": "./examples/sample_data/dbt/manifest_1.0.json", - "dbtCatalogFilePath": "./examples/sample_data/dbt/catalog_1.0.json" + } } } }, @@ -195,7 +193,7 @@ class VerticaIngestionTest(TestCase): @patch("sqlalchemy.engine.reflection.Inspector.get_pk_constraint") @patch("sqlalchemy.engine.reflection.Inspector.get_columns") @patch("sqlalchemy.engine.base.Engine.connect") - def test_mysql_ingestion( + def test_vertica_ingestion( self, mock_connect, get_columns,