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:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							1cdc50e3f6
						
					
				
				
					commit
					3c6b5b8afc
				
			@@ -85,7 +85,7 @@ def override_git_repos_cache_path(tmpdir):
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@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
 | 
			
		||||
 | 
			
		||||
    The structure of commits in this repo is as follows::
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user