Skip to content

Commit

Permalink
imp/imp_url cmd test: remove unnecessary dvc fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
pared committed Jan 6, 2020
1 parent a620658 commit e1176bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/unit/command/test_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from dvc.command.imp import CmdImport


def test_import(mocker, dvc):
def test_import(mocker):
cli_args = parse_args(
["import", "repo_url", "src", "--out", "out", "--rev", "version"]
)
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/command/test_imp_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dvc.exceptions import DvcException


def test_import_url(mocker, dvc):
def test_import_url(mocker):
cli_args = parse_args(["import-url", "src", "out", "--file", "file"])
assert cli_args.func == CmdImportUrl

Expand All @@ -17,7 +17,7 @@ def test_import_url(mocker, dvc):
m.assert_called_once_with("src", out="out", fname="file")


def test_failed_import_url(mocker, caplog, dvc):
def test_failed_import_url(mocker, caplog):
cli_args = parse_args(["import-url", "http://somesite.com/file_name"])
assert cli_args.func == CmdImportUrl

Expand Down

0 comments on commit e1176bf

Please sign in to comment.