From cdbcea11f61334afffc52e7965e5cb2649229a38 Mon Sep 17 00:00:00 2001 From: Onkar Ravgan Date: Wed, 14 Feb 2024 11:03:17 +0530 Subject: [PATCH] fixed e2e counts (#15171) --- ingestion/tests/cli_e2e/test_cli_metabase.py | 6 +++--- ingestion/tests/cli_e2e/test_cli_powerbi.py | 4 ++-- ingestion/tests/cli_e2e/test_cli_quicksight.py | 4 ++-- ingestion/tests/cli_e2e/test_cli_redash.py | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ingestion/tests/cli_e2e/test_cli_metabase.py b/ingestion/tests/cli_e2e/test_cli_metabase.py index 71a581b6c32..434747dabf1 100644 --- a/ingestion/tests/cli_e2e/test_cli_metabase.py +++ b/ingestion/tests/cli_e2e/test_cli_metabase.py @@ -64,16 +64,16 @@ class MetabaseCliTest(CliCommonDashboard.TestSuite): return 6 def expected_lineage(self) -> int: - return 5 + return 7 def expected_tags(self) -> int: return 0 def expected_filtered_mix(self) -> int: - return 2 + return 3 def expected_filtered_sink_mix(self) -> int: return 6 def expected_dashboards_and_charts_after_patch(self) -> int: - return 1 + return 0 diff --git a/ingestion/tests/cli_e2e/test_cli_powerbi.py b/ingestion/tests/cli_e2e/test_cli_powerbi.py index 6cc222ca4d4..867c6111f30 100644 --- a/ingestion/tests/cli_e2e/test_cli_powerbi.py +++ b/ingestion/tests/cli_e2e/test_cli_powerbi.py @@ -71,7 +71,7 @@ class PowerBICliTest(CliCommonDashboard.TestSuite): return 22 def expected_filtered_sink_mix(self) -> int: - return 43 + return 42 def expected_dashboards_and_charts_after_patch(self) -> int: - return 1 + return 0 diff --git a/ingestion/tests/cli_e2e/test_cli_quicksight.py b/ingestion/tests/cli_e2e/test_cli_quicksight.py index 126b3d70a53..3d3fcc56c25 100644 --- a/ingestion/tests/cli_e2e/test_cli_quicksight.py +++ b/ingestion/tests/cli_e2e/test_cli_quicksight.py @@ -50,7 +50,7 @@ class QuicksightCliTest(CliCommonDashboard.TestSuite): return 0 def expected_filtered_sink_mix(self) -> int: - return 1 + return 0 # Quicksight do not ingest tags def expected_tags(self) -> int: @@ -71,4 +71,4 @@ class QuicksightCliTest(CliCommonDashboard.TestSuite): return 0 def expected_dashboards_and_charts_after_patch(self) -> int: - return 1 + return 0 diff --git a/ingestion/tests/cli_e2e/test_cli_redash.py b/ingestion/tests/cli_e2e/test_cli_redash.py index ffa74220561..5a5df830a4b 100644 --- a/ingestion/tests/cli_e2e/test_cli_redash.py +++ b/ingestion/tests/cli_e2e/test_cli_redash.py @@ -61,7 +61,7 @@ class RedashCliTest(CliCommonDashboard.TestSuite): return 6 def expected_filtered_sink_mix(self) -> int: - return 9 + return 8 def expected_dashboards_and_charts_after_patch(self) -> int: - return 2 + return 1