Skip to content

Commit

Permalink
Fix failing home view test after changing audit log permissions (#37550)
Browse files Browse the repository at this point in the history
Yet another test was failing after changing audit log permissions
in #37501
  • Loading branch information
potiuk committed Feb 19, 2024
1 parent e92b82e commit 016892b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/www/views/test_views_home.py
Expand Up @@ -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",
[
Expand Down

0 comments on commit 016892b

Please sign in to comment.