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:
parent
1cdc50e3f6
commit
3c6b5b8afc
@ -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::
|
||||||
|
Loading…
Reference in New Issue
Block a user