diff --git a/tests/www/views/test_views_home.py b/tests/www/views/test_views_home.py index c89ab89e9b79e..c9b17adf75c03 100644 --- a/tests/www/views/test_views_home.py +++ b/tests/www/views/test_views_home.py @@ -375,11 +375,16 @@ def test_dashboard_flash_messages_type(user_client): check_content_in_response("alert-foo", resp) -def test_audit_log_view(user_client, working_dags): - resp = user_client.get("/dags/filter_test_1/audit_log") +def test_audit_log_view_admin(admin_client, working_dags): + resp = admin_client.get("/dags/filter_test_1/audit_log") check_content_in_response("Dag Audit Log", resp) +def test_audit_log_view_user(user_client, working_dags): + resp = user_client.get("/dags/filter_test_1/audit_log") + check_content_not_in_response("Dag Audit Log", resp, resp_code=302) + + @pytest.mark.parametrize( "url, lower_key, greater_key", [