From 000aaa63f145547a2bcae0012cfcd6ddfb8653dc Mon Sep 17 00:00:00 2001 From: Suman Maharana Date: Wed, 10 Sep 2025 01:52:34 +0530 Subject: [PATCH] Fix tableau e2e count error (#23287) --- ingestion/tests/cli_e2e/test_cli_tableau.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ingestion/tests/cli_e2e/test_cli_tableau.py b/ingestion/tests/cli_e2e/test_cli_tableau.py index 94c133f13cb..ffff3c757b7 100644 --- a/ingestion/tests/cli_e2e/test_cli_tableau.py +++ b/ingestion/tests/cli_e2e/test_cli_tableau.py @@ -265,10 +265,10 @@ class TableauCliTest(CliCommonDashboard.TestSuite): self.assertIsNotNone(analytics_dashboard.service) # Validate that charts are properly linked if hasattr(analytics_dashboard, "charts") and analytics_dashboard.charts: - self.assertEqual( + self.assertGreaterEqual( len(analytics_dashboard.charts.root), 4, - "Analytics Workbook should have 4 charts", + "Analytics Workbook should have 4 or more charts", ) def _validate_chart_metadata(self) -> None: