Skip to content

Commit

Permalink
Use proper name for test function
Browse files Browse the repository at this point in the history
  • Loading branch information
omkar-foss committed Oct 10, 2024
1 parent 7ad3b44 commit 45450a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/api_fastapi/views/public/test_dags.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def test_dag_details(test_client, query_params, dag_id, expected_status_code, da
({}, DAG2_ID, 200, DAG2_DISPLAY_NAME),
],
)
def test_dag(test_client, query_params, dag_id, expected_status_code, dag_display_name):
def test_get_dag(test_client, query_params, dag_id, expected_status_code, dag_display_name):
response = test_client.get(f"/public/dags/{dag_id}", params=query_params)
assert response.status_code == expected_status_code
if expected_status_code != 200:
Expand Down

0 comments on commit 45450a9

Please sign in to comment.