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 6e2d8cd commit a4c6c45Copy full SHA for a4c6c45
LibGit2Sharp.Tests/StashFixture.cs
@@ -196,8 +196,7 @@ public void CanStashIgnoredFiles()
196
var stasher = Constants.Signature;
197
var stash = repo.Stashes.Add(stasher, "This stash includes ignore files", StashModifiers.IncludeIgnored);
198
199
- //TODO : below assertion doesn't pass. Bug?
200
- //Assert.False(File.Exists(ignoredFilePath));
+ Assert.False(File.Exists(Path.Combine(repo.Info.WorkingDirectory, ignoredFilename)));
201
202
var blob = repo.Lookup<Blob>("stash^3:ignored_file.txt");
203
Assert.NotNull(blob);
0 commit comments