From f074d0026914f25420714a4f006a7fbc133d9568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Redzy=C5=84ski?= Date: Wed, 8 Jan 2020 11:11:34 +0100 Subject: [PATCH] output: tests: migrate to dir helpers --- tests/func/test_output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/func/test_output.py b/tests/func/test_output.py index 19744db32a..54f52b4e52 100644 --- a/tests/func/test_output.py +++ b/tests/func/test_output.py @@ -36,5 +36,5 @@ def _get_out(dvc, path): @pytest.mark.parametrize("url,scheme", TESTS) -def test_scheme(dvc_repo, url, scheme): - assert type(_get_out(dvc_repo, url)) == OUTS_MAP[scheme] +def test_scheme(dvc, url, scheme): + assert type(_get_out(dvc, url)) == OUTS_MAP[scheme]