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>2015-01-23 16:49:31 +0300
committernulltoken <emeric.fermas@gmail.com>2015-01-23 16:49:31 +0300
commitb8b17b232b315fd65daedc8c7f18b8deee0e794e (patch)
tree0cdf64c8b931052b6fbff9d074ba6e2a150df963 /LibGit2Sharp.Tests
parent6892a942254b9af328f6eb6f87d3b21df1fcbef6 (diff)
Unskip some tag fetching related tests
Diffstat (limited to 'LibGit2Sharp.Tests')
-rw-r--r--LibGit2Sharp.Tests/FetchFixture.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp.Tests/FetchFixture.cs b/LibGit2Sharp.Tests/FetchFixture.cs
index a83ff554..b10f443c 100644
--- a/LibGit2Sharp.Tests/FetchFixture.cs
+++ b/LibGit2Sharp.Tests/FetchFixture.cs
@@ -147,10 +147,10 @@ namespace LibGit2Sharp.Tests
}
}
- [Theory(Skip = "Skipping due to recent github handling modification of --include-tag.")]
+ [Theory]
[InlineData(TagFetchMode.All, 4)]
[InlineData(TagFetchMode.None, 0)]
- [InlineData(TagFetchMode.Auto, 3)]
+ //[InlineData(TagFetchMode.Auto, 3)] // TODO: Skipping due to github modification of --include-tag handling."
public void FetchRespectsConfiguredAutoTagSetting(TagFetchMode tagFetchMode, int expectedTagCount)
{
string url = "http://github.com/libgit2/TestGitRepository";