8000 Sandbox test repositories in TMP · libgit2/libgit2sharp@7da784c · GitHub
[go: up one dir, main page]

Skip to content

Commit 7da784c

Browse files
committed
Sandbox test repositories in TMP
1 parent cad89d0 commit 7da784c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

LibGit2Sharp.Tests/TestHelpers/Constants.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
using System;
2+
using System.IO;
23

34
namespace LibGit2Sharp.Tests.TestHelpers
45
{
56
public static class Constants
67
{
7-
public const string TemporaryReposPath = "TestRepos";
8+
public static readonly string TemporaryReposPath = Path.Combine(Path.GetTempPath(), "LibGit2Sharp-TestRepos");
89
public const string UnknownSha = "deadbeefdeadbeefdeadbeefdeadbeefdeadbeef";
910
public static readonly Identity Identity = new Identity("A. U. Thor", "thor@valhalla.asgard.com");
1011
public static readonly Signature Signature = new Signature(Identity, new DateTimeOffset(2011, 06, 16, 10, 58, 27, TimeSpan.FromHours(2)));

0 commit comments

Comments
 (0)
0