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:
authorPaul Duncan <jpaulduncan@gmail.com>2014-09-16 23:39:48 +0400
committernulltoken <emeric.fermas@gmail.com>2014-10-31 11:44:46 +0300
commit7a317883c304b12e4d1a742e8a61ddb751985f8d (patch)
tree188d82876684774d31590316c6b8329f2e42d9cd /LibGit2Sharp.Tests/RepositoryFixture.cs
parenta03f59747bff1d33d10bcbde3fc550ebfa0ecafa (diff)
Move higher level Index operations to IRepository
Fix #822
Diffstat (limited to 'LibGit2Sharp.Tests/RepositoryFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/RepositoryFixture.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp.Tests/RepositoryFixture.cs b/LibGit2Sharp.Tests/RepositoryFixture.cs
index 62ca9e1b..c74804ff 100644
--- a/LibGit2Sharp.Tests/RepositoryFixture.cs
+++ b/LibGit2Sharp.Tests/RepositoryFixture.cs
@@ -409,7 +409,7 @@ namespace LibGit2Sharp.Tests
{
const string filename = "new.txt";
Touch(repo.Info.WorkingDirectory, filename, "one ");
- repo.Index.Stage(filename);
+ repo.Stage(filename);
Signature author = Constants.Signature;
Commit commit = repo.Commit("Initial commit", author, author);