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:
authornulltoken <emeric.fermas@gmail.com>2011-06-29 19:06:20 +0400
committernulltoken <emeric.fermas@gmail.com>2011-07-14 17:52:08 +0400
commit148fb75694843787b3d80ecd3e4d3dc5229dab61 (patch)
treeaeae68b029ac6b639fcc8c3d8dc43ad22dee49bc /LibGit2Sharp.Tests/RepositoryFixture.cs
parentdbf812da22d950481a286a7287913d2e834ad117 (diff)
Update libgit2 binaries to 33afca4
Final fixes for issue #51, #52 and #53.
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