diff --git a/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py b/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py index 06806a71e43..f9e63747d4c 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py @@ -209,7 +209,7 @@ class TableauSource(DashboardServiceSource): serviceType=DashboardServiceType.Tableau.value, columns=self.get_column_info(data_model), sql=self._get_datamodel_sql_query(data_model=data_model), - owner=self.get_owner_ref(dashboard_details=dashboard_details), + owners=self.get_owner_ref(dashboard_details=dashboard_details), ) yield Either(right=data_model_request) self.register_record_datamodel(datamodel_request=data_model_request) diff --git a/ingestion/tests/cli_e2e/test_cli_tableau.py b/ingestion/tests/cli_e2e/test_cli_tableau.py index 3c7806dfce4..ead16fde853 100644 --- a/ingestion/tests/cli_e2e/test_cli_tableau.py +++ b/ingestion/tests/cli_e2e/test_cli_tableau.py @@ -64,16 +64,16 @@ class TableauCliTest(CliCommonDashboard.TestSuite): return 1 def expected_datamodel_lineage(self) -> int: - return 5 + return 6 def expected_datamodels(self) -> int: - return 5 + return 6 def expected_filtered_mix(self) -> int: return 2 def expected_filtered_sink_mix(self) -> int: - return 13 + return 14 def expected_dashboards_and_charts_after_patch(self) -> int: return 4