Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp.Tests/ShadowCopyFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/ShadowCopyFixture.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/LibGit2Sharp.Tests/ShadowCopyFixture.cs b/LibGit2Sharp.Tests/ShadowCopyFixture.cs
index 546b7670..5f57a800 100644
--- a/LibGit2Sharp.Tests/ShadowCopyFixture.cs
+++ b/LibGit2Sharp.Tests/ShadowCopyFixture.cs
@@ -17,7 +17,7 @@ namespace LibGit2Sharp.Tests
Assembly assembly = type.Assembly;
// Build a new domain which will shadow copy assemblies
- string cachePath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
+ string cachePath = Path.Combine(Constants.TemporaryReposPath, Path.GetRandomFileName());
Directory.CreateDirectory(cachePath);
var setup = new AppDomainSetup
@@ -51,11 +51,6 @@ namespace LibGit2Sharp.Tests
// ...but are currently loaded from different locations...
string cachedAssemblyLocation = wrapper.AssemblyLocation;
- if (cachedAssemblyLocation.StartsWith("/private"))
- {
- // On OS X, sometimes you get /private/var/… instead of /var/…, but they map to the same place.
- cachedAssemblyLocation = cachedAssemblyLocation.Substring("/private".Length);
- }
Assert.NotEqual(sourceAssembly.Location, cachedAssemblyLocation);
// ...that the assembly in the other domain is stored in the shadow copy cache...