From fda640747fedc59e8c1bc6654d80537af135ba04 Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Mon, 4 Jan 2021 12:27:27 -0600 Subject: [PATCH] fix missing comma --- pooch/tests/test_processors.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pooch/tests/test_processors.py b/pooch/tests/test_processors.py index 512a7081..f00a2878 100644 --- a/pooch/tests/test_processors.py +++ b/pooch/tests/test_processors.py @@ -114,7 +114,8 @@ def test_extractprocessor_fails(): "proc_cls,ext,dir", [ (Unzip, ".zip", None), - (Untar, ".tar.gz", None)(Unzip, ".zip", "foo"), + (Untar, ".tar.gz", None), + (Unzip, ".zip", "foo"), (Untar, ".tar.gz", "foo"), ], ids=["Unzip", "Untar", "Unzip_to_custom_dir", "Untar_to_custom_dir"],