From ce028ddbc6d73f311d416089dba807809649b98d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Trifir=C3=B2?= Date: Sat, 1 Oct 2022 00:44:57 +0200 Subject: [PATCH] fix imports see https://github.com/iterative/dvc/pull/8386 --- dvc_gdrive/tests/test_dvc.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dvc_gdrive/tests/test_dvc.py b/dvc_gdrive/tests/test_dvc.py index 3b68f79..015127b 100644 --- a/dvc_gdrive/tests/test_dvc.py +++ b/dvc_gdrive/tests/test_dvc.py @@ -1,6 +1,8 @@ import pytest -from dvc.testing.test_api import TestAPI # noqa, pylint: disable=unused-import -from dvc.testing.test_remote import ( # noqa, pylint: disable=unused-import +from dvc.testing.api_tests import ( # noqa, pylint: disable=unused-import + TestAPI, +) +from dvc.testing.remote_tests import ( # noqa, pylint: disable=unused-import TestRemote, )