From 678b15e60cc17ce5164e80610514fd60d1f3a477 Mon Sep 17 00:00:00 2001 From: Hiroki Takizawa Date: Thu, 7 Dec 2023 10:31:55 +0900 Subject: [PATCH] Update python_tests/test_csv_download.py Co-authored-by: Shuhei Watanabe <47781922+nabenabe0928@users.noreply.github.com> --- python_tests/test_csv_download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_tests/test_csv_download.py b/python_tests/test_csv_download.py index 55cd4569..7740ea83 100644 --- a/python_tests/test_csv_download.py +++ b/python_tests/test_csv_download.py @@ -55,8 +55,8 @@ def test_download_csv_all_running() -> None: assert status == 200 -@pytest.mark.parametrize("id", [0, 1]) -def test_download_csv_fail(id: int) -> None: +@pytest.mark.parametrize("study_id", [0, 1]) +def test_download_csv_fail(study_id: int) -> None: def objective(trial: optuna.Trial) -> float: x = trial.suggest_float("x", -100, 100) y = trial.suggest_categorical("y", [-1, 0, 1])