From e9932210621f0f5f11fac9579066c45f0096e40f Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" Date: Tue, 23 Nov 2021 08:21:03 -0300 Subject: [PATCH] Fixes the test_get_dashboard_changed_on test --- tests/integration_tests/dashboards/dao_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration_tests/dashboards/dao_tests.py b/tests/integration_tests/dashboards/dao_tests.py index 6f6708a13d07d..ba35166248452 100644 --- a/tests/integration_tests/dashboards/dao_tests.py +++ b/tests/integration_tests/dashboards/dao_tests.py @@ -85,6 +85,7 @@ def test_set_dash_metadata(self): @pytest.mark.usefixtures("load_world_bank_dashboard_with_slices") def test_get_dashboard_changed_on(self): + self.login(username="admin") session = db.session() dashboard = session.query(Dashboard).filter_by(slug="world_health").first()