Skip to content

Commit 27f2ae2

Browse files
authored
Use tuple for pytest.mark.parametrize argnames (#65399)
1 parent 26cbdcb commit 27f2ae2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

airflow-core/tests/unit/api_fastapi/common/test_dagbag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class TestCreateDagBag:
8989
"""Tests for create_dag_bag() function."""
9090

9191
@pytest.mark.parametrize(
92-
["cache_size", "cache_ttl", "expected_use_cache", "expected_dags_type"],
92+
("cache_size", "cache_ttl", "expected_use_cache", "expected_dags_type"),
9393
[
9494
pytest.param(64, 3600, True, TTLCache, id="default_ttl_cache"),
9595
pytest.param(0, 3600, False, dict, id="size_zero_unbounded"),

0 commit comments

Comments
 (0)