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/RepositoryFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/RepositoryFixture.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/LibGit2Sharp.Tests/RepositoryFixture.cs b/LibGit2Sharp.Tests/RepositoryFixture.cs
index 277f32b8..b2649183 100644
--- a/LibGit2Sharp.Tests/RepositoryFixture.cs
+++ b/LibGit2Sharp.Tests/RepositoryFixture.cs
@@ -297,35 +297,35 @@ namespace LibGit2Sharp.Tests
public void CanDiscoverABareRepoGivenTheRepoPath()
{
string path = Repository.Discover(Constants.BareTestRepoPath);
- path.ShouldEqual(Path.GetFullPath(Constants.BareTestRepoPath));
+ path.ShouldEqual(Path.GetFullPath(Constants.BareTestRepoPath + Path.DirectorySeparatorChar));
}
[Test]
public void CanDiscoverABareRepoGivenASubDirectoryOfTheRepoPath()
{
string path = Repository.Discover(Path.Combine(Constants.BareTestRepoPath, "objects/4a"));
- path.ShouldEqual(Path.GetFullPath(Constants.BareTestRepoPath));
+ path.ShouldEqual(Path.GetFullPath(Constants.BareTestRepoPath + Path.DirectorySeparatorChar));
}
[Test]
public void CanDiscoverAStandardRepoGivenTheRepoPath()
{
string path = Repository.Discover(Constants.StandardTestRepoPath);
- path.ShouldEqual(Path.GetFullPath(Constants.StandardTestRepoPath));
+ path.ShouldEqual(Path.GetFullPath(Constants.StandardTestRepoPath + Path.DirectorySeparatorChar));
}
[Test]
public void CanDiscoverAStandardRepoGivenASubDirectoryOfTheRepoPath()
{
string path = Repository.Discover(Path.Combine(Constants.StandardTestRepoPath, "objects/4a"));
- path.ShouldEqual(Path.GetFullPath(Constants.StandardTestRepoPath));
+ path.ShouldEqual(Path.GetFullPath(Constants.StandardTestRepoPath + Path.DirectorySeparatorChar));
}
[Test]
public void CanDiscoverAStandardRepoGivenTheWorkingDirPath()
{
string path = Repository.Discover(Constants.StandardTestRepoWorkingDirPath);
- path.ShouldEqual(Path.GetFullPath(Constants.StandardTestRepoPath));
+ path.ShouldEqual(Path.GetFullPath(Constants.StandardTestRepoPath + Path.DirectorySeparatorChar));
}
}
} \ No newline at end of file