fixed tableau owner and e2e counts (#17266)

This commit is contained in:
Onkar Ravgan 2024-08-02 15:17:09 +05:30 committed by GitHub
parent 2a854f90e1
commit 7272281cf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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