fix pbi, vertica, metabase tests (#20190)

This commit is contained in:
harshsoni2024 2025-03-11 21:10:56 +05:30 committed by GitHub
parent 4093dcb11a
commit aedbe8be2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View File

@ -75,7 +75,7 @@ class MetabaseCliTest(CliCommonDashboard.TestSuite):
return 4
def expected_filtered_sink_mix(self) -> int:
return 7
return 8
def expected_dashboards_and_charts_after_patch(self) -> int:
return 0

View File

@ -55,7 +55,7 @@ class PowerBICliTest(CliCommonDashboard.TestSuite):
return []
def expected_datamodels(self) -> int:
return 23
return 26
def expected_dashboards_and_charts(self) -> int:
return 79
@ -64,13 +64,13 @@ class PowerBICliTest(CliCommonDashboard.TestSuite):
return 44
def expected_datamodel_lineage(self) -> int:
return 36
return 38
def expected_tags(self) -> int:
return 0
def expected_filtered_mix(self) -> int:
return 28
return 29
def expected_filtered_sink_mix(self) -> int:
return 64

View File

@ -24,14 +24,14 @@ from .common_e2e_sqa_mixins import SQACommonMethods
class VerticaCliTest(CliCommonDB.TestSuite, SQACommonMethods):
create_table_query: str = """
CREATE TABLE vendor_dimension_new AS
CREATE TABLE IF NOT EXISTS vendor_dimension_new AS
SELECT *
FROM vendor_dimension
WHERE 1=0;
"""
create_view_query: str = """
CREATE VIEW vendor_dimension_v AS
CREATE OR REPLACE VIEW vendor_dimension_v AS
SELECT vendor_key, vendor_name
FROM public.vendor_dimension_new;
"""
@ -74,7 +74,7 @@ class VerticaCliTest(CliCommonDB.TestSuite, SQACommonMethods):
return 2
def expected_lineage_node(self) -> str:
return "e2e_vertica.VMart.public.vendor_dimension"
return "e2e_vertica.VMart.public.vendor_dimension_v"
@staticmethod
def fqn_created_table() -> str: