Skip to content

Commit

Permalink
dependency: test: migrate to dir helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
pared committed Jan 6, 2020
1 parent 8041d70 commit c2b3921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/func/test_dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ def _get_dep(dvc, path):


@pytest.mark.parametrize("url,scheme", TESTS)
def test_scheme(dvc_repo, url, scheme):
assert type(_get_dep(dvc_repo, url)) == DEP_MAP[scheme]
def test_scheme(dvc, url, scheme):
assert type(_get_dep(dvc, url)) == DEP_MAP[scheme]

0 comments on commit c2b3921

Please sign in to comment.