From afb0d13220293651a1a3b8b8f51759c18ffcc2f4 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Fri, 11 Nov 2022 07:43:08 +0800 Subject: [PATCH] Fix docstring to match reality We've moved to pathlib a while ago, the docstring still references tests.lib.path, which no longer exists. --- tests/functional/test_install_vcs_git.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/functional/test_install_vcs_git.py b/tests/functional/test_install_vcs_git.py index cb72ec0b230..60b7715a9ca 100644 --- a/tests/functional/test_install_vcs_git.py +++ b/tests/functional/test_install_vcs_git.py @@ -79,7 +79,7 @@ def _make_version_pkg_url( Return a "git+file://" URL to the version_pkg test package. Args: - path: a tests.lib.path.Path object pointing to a Git repository + path: a pathlib.Path object pointing to a Git repository containing the version_pkg package. rev: an optional revision to install like a branch name, tag, or SHA. """ @@ -101,7 +101,7 @@ def _install_version_pkg_only( the version). Args: - path: a tests.lib.path.Path object pointing to a Git repository + path: a pathlib.Path object pointing to a Git repository containing the package. rev: an optional revision to install like a branch name or tag. """ @@ -122,7 +122,7 @@ def _install_version_pkg( installed. Args: - path: a tests.lib.path.Path object pointing to a Git repository + path: a pathlib.Path object pointing to a Git repository containing the package. rev: an optional revision to install like a branch name or tag. """