Add workaround to not fail on login test

Change-Id: If77efcdae4e9686f0343c0268c5e3b99abee83c6
Related: PROD-19810
diff --git a/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py b/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py
index d928a1e..faa6d37 100644
--- a/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py
+++ b/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py
@@ -139,4 +139,7 @@
         creds = self.os_primary.credentials
         self.check_login_page()
         self.user_login(creds.username, creds.password)
+        # FIXME(e0ne): It's a dirty hack to unblock CI until
+        # PROD-19810 will be fixed
+        self.user_login(creds.username, creds.password)
         self.check_home_page()