8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9060db commit ceef2f7Copy full SHA for ceef2f7
LibGit2Sharp.Tests/IndexFixture.cs
@@ -212,15 +212,13 @@ public void CanStageANewFileInAPersistentManner()
212
repo.Index.Stage(filename);
213
Assert.NotNull(repo.Index[filename]);
214
Assert.Equal(FileStatus.Added, repo.Index.RetrieveStatus(filename));
215
- Assert.Equal(FileStatus.Added, repo.Index[filename].State);
216
}
217
218
using (var repo = new Repository(path.RepositoryPath))
219
{
220
const string filename = "unit_test.txt";
221
222
223
224
225
226
0 commit comments