Remove unused argument in test fixture (#32236)

The argument is very likely a typo, and was meant to
be given to the fixture decorator. Since the value
being passed is the default, let's just remove it.
This commit is contained in:
Massimiliano Culpo 2022-08-18 19:22:50 +02:00 committed by GitHub
parent 1cdc50e3f6
commit 3c6b5b8afc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ def override_git_repos_cache_path(tmpdir):
@pytest.fixture @pytest.fixture
def mock_git_version_info(tmpdir, override_git_repos_cache_path, scope="function"): def mock_git_version_info(tmpdir, override_git_repos_cache_path):
"""Create a mock git repo with known structure """Create a mock git repo with known structure
The structure of commits in this repo is as follows:: The structure of commits in this repo is as follows::