fixed e2e for mysql and quicksight (#16959)

This commit is contained in:
Onkar Ravgan 2024-07-08 20:50:02 +05:30 committed by GitHub
parent ce1a23c3be
commit 49876b9cd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -117,7 +117,7 @@ class MysqlCliTest(CliCommonDB.TestSuite, SQACommonMethods):
@staticmethod
def expected_filtered_table_includes() -> int:
return 78
return 81
@staticmethod
def expected_filtered_table_excludes() -> int:
@ -125,4 +125,4 @@ class MysqlCliTest(CliCommonDB.TestSuite, SQACommonMethods):
@staticmethod
def expected_filtered_mix() -> int:
return 78
return 81

View File

@ -23,10 +23,10 @@ class QuicksightCliTest(CliCommonDashboard.TestSuite):
return "quicksight"
def get_includes_dashboards(self) -> List[str]:
return [".*"]
return ["^test$"]
def get_excludes_dashboards(self) -> List[str]:
return ["test"]
return ["test_redshift_lineage"]
def get_includes_charts(self) -> List[str]:
return [".*Sheet 1.*", ".*"]
@ -47,10 +47,10 @@ class QuicksightCliTest(CliCommonDashboard.TestSuite):
return 7
def expected_filtered_mix(self) -> int:
return 0
return 2
def expected_filtered_sink_mix(self) -> int:
return 0
return 2
# Quicksight do not ingest tags
def expected_tags(self) -> int: