Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 93a3aaa

Browse files
Removing unused variables
1 parent 596522b commit 93a3aaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/UnitTests/Extensions/EnvironmentExtensionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void GetRepositoryPathThrowsWhenRepositoryIsChildOfProject(
5353
environment.RepositoryPath.Returns(repositoryPath.ToNPath());
5454
environment.UnityProjectPath.Returns(projectPath.ToNPath());
5555

56-
var repositoryFilePath = environment.GetRepositoryPath(path.ToNPath());
56+
environment.GetRepositoryPath(path.ToNPath());
5757
}
5858

5959
[Test, Sequential]
@@ -83,7 +83,7 @@ public void GetAssetPathShouldThrowWhenRepositoryRootIsChild(
8383
environment.RepositoryPath.Returns(repositoryPath.ToNPath());
8484
environment.UnityProjectPath.Returns(projectPath.ToNPath());
8585

86-
var repositoryFilePath = environment.GetAssetPath(path.ToNPath());
86+
environment.GetAssetPath(path.ToNPath());
8787
}
8888
}
8989
}

0 commit comments

Comments
 (0)