Skip to content

Commit

Permalink
fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
drammock committed Jan 4, 2021
1 parent de68081 commit fda6407
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pooch/tests/test_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit fda6407

Please sign in to comment.