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 06a0c57 commit cc2661bCopy full SHA for cc2661b
LibGit2Sharp.Tests/CheckoutFixture.cs
@@ -529,9 +529,7 @@ public void ForceCheckoutRetainsIgnoredChanges()
529
string ignoredFilePath = Path.Combine(repo.Info.WorkingDirectory, Path.Combine("bin", "some_ignored_file.txt"));
530
File.WriteAllText(ignoredFilePath, "hello from this ignored file.");
531
532
- // The following check does not report ignored entries...
533
- // TODO: Uncomment once libgit2/libgit2#1251 is merged
534
- // Assert.Equal(1, repo.Index.RetrieveStatus().Ignored.Count());
+ Assert.Equal(1, repo.Index.RetrieveStatus().Ignored.Count());
535
536
Assert.Equal(FileStatus.Ignored, repo.Index.RetrieveStatus(ignoredFilePath));
537
0 commit comments