From 404620e267a43b9d13aaf15854b8e38f76b02895 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Tue, 19 Nov 2019 19:12:49 +0200 Subject: [PATCH] test: update: use dvc_repo fixture To fix test failure. --- tests/unit/command/test_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/command/test_update.py b/tests/unit/command/test_update.py index bd741c825a..c44def6fa6 100644 --- a/tests/unit/command/test_update.py +++ b/tests/unit/command/test_update.py @@ -2,7 +2,7 @@ from dvc.command.update import CmdUpdate -def test_update(mocker): +def test_update(dvc_repo, mocker): targets = ["target1", "target2", "target3"] cli_args = parse_args(["update"] + targets) assert cli_args.func == CmdUpdate