@@ -23,7 +23,7 @@ public void CreateObjectWhenProjectRootIsChildOfGitRootAndFileInGitRoot()
23
23
var repositoryPath = "/Source" . ToNPath ( ) ;
24
24
var unityProjectPath = repositoryPath . Combine ( "UnityProject" ) ;
25
25
26
- var gitEnvironment = SubstituteFactory . CreateProcessEnvironment ( repositoryPath ) ;
26
+ SubstituteFactory . CreateProcessEnvironment ( repositoryPath ) ;
27
27
var environment = SubstituteFactory . CreateEnvironment ( new CreateEnvironmentOptions {
28
28
RepositoryPath = repositoryPath ,
29
29
UnityProjectPath = unityProjectPath
@@ -54,7 +54,7 @@ public void CreateObjectWhenProjectRootIsChildOfGitRootAndFileInProjectRoot()
54
54
var repositoryPath = "/Source" . ToNPath ( ) ;
55
55
var unityProjectPath = repositoryPath . Combine ( "UnityProject" ) ;
56
56
57
- var gitEnvironment = SubstituteFactory . CreateProcessEnvironment ( repositoryPath ) ;
57
+ SubstituteFactory . CreateProcessEnvironment ( repositoryPath ) ;
58
58
var environment = SubstituteFactory . CreateEnvironment ( new CreateEnvironmentOptions {
59
59
RepositoryPath = repositoryPath ,
60
60
UnityProjectPath = unityProjectPath
@@ -84,7 +84,7 @@ public void CreateObjectWhenProjectRootIsSameAsGitRootAndFileInGitRoot()
84
84
var repositoryPath = "/Source" . ToNPath ( ) ;
85
85
var unityProjectPath = repositoryPath ;
86
86
87
- var gitEnvironment = SubstituteFactory . CreateProcessEnvironment ( repositoryPath ) ;
87
+ SubstituteFactory . CreateProcessEnvironment ( repositoryPath ) ;
88
88
var environment = SubstituteFactory . CreateEnvironment ( new CreateEnvironmentOptions {
89
89
RepositoryPath = repositoryPath ,
90
90
UnityProjectPath = unityProjectPath
0 commit comments