We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pytest.mark.parametrize argnames
1 parent 26cbdcb commit 27f2ae2Copy full SHA for 27f2ae2
1 file changed
airflow-core/tests/unit/api_fastapi/common/test_dagbag.py
@@ -89,7 +89,7 @@ class TestCreateDagBag:
89
"""Tests for create_dag_bag() function."""
90
91
@pytest.mark.parametrize(
92
- ["cache_size", "cache_ttl", "expected_use_cache", "expected_dags_type"],
+ ("cache_size", "cache_ttl", "expected_use_cache", "expected_dags_type"),
93
[
94
pytest.param(64, 3600, True, TTLCache, id="default_ttl_cache"),
95
pytest.param(0, 3600, False, dict, id="size_zero_unbounded"),
0 commit comments