From 2f0ca4a09feeef20ebd2d14094d109fb435d1acd Mon Sep 17 00:00:00 2001 From: Ryan Gribble Date: Sun, 15 Jan 2017 22:49:32 +1000 Subject: [PATCH] Unskip these Event tests now because apparently they work! --- .../Clients/EventsClientTests.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Octokit.Tests.Integration/Clients/EventsClientTests.cs b/Octokit.Tests.Integration/Clients/EventsClientTests.cs index 5b1377cb9f..e0e8545665 100644 --- a/Octokit.Tests.Integration/Clients/EventsClientTests.cs +++ b/Octokit.Tests.Integration/Clients/EventsClientTests.cs @@ -158,7 +158,7 @@ public async Task ReturnsDistinctEventsBasedOnStartPageWithRepositoryId() public class TheGetAllIssuesForRepositoryMethod { - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task CanListIssues() { var github = Helper.GetAuthenticatedClient(); @@ -167,7 +167,7 @@ public async Task CanListIssues() Assert.NotEmpty(issues); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task CanListIssuesWithRepositoryId() { var github = Helper.GetAuthenticatedClient(); @@ -176,7 +176,7 @@ public async Task CanListIssuesWithRepositoryId() Assert.NotEmpty(issues); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task ReturnsCorrectCountOfEventsWithoutStart() { var github = Helper.GetAuthenticatedClient(); @@ -192,7 +192,7 @@ public async Task ReturnsCorrectCountOfEventsWithoutStart() Assert.Equal(3, eventInfos.Count); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task ReturnsCorrectCountOfEventsWithoutStartWitRepositoryId() { var github = Helper.GetAuthenticatedClient(); @@ -208,7 +208,7 @@ public async Task ReturnsCorrectCountOfEventsWithoutStartWitRepositoryId() Assert.Equal(3, eventInfos.Count); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task ReturnsCorrectCountOfEventsWithStart() { var github = Helper.GetAuthenticatedClient(); @@ -225,7 +225,7 @@ public async Task ReturnsCorrectCountOfEventsWithStart() Assert.Equal(2, eventInfos.Count); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task ReturnsCorrectCountOfEventsWithStartWithRepositoryId() { var github = Helper.GetAuthenticatedClient(); @@ -242,7 +242,7 @@ public async Task ReturnsCorrectCountOfEventsWithStartWithRepositoryId() Assert.Equal(2, eventInfos.Count); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task ReturnsDistinctEventsBasedOnStartPage() { var github = Helper.GetAuthenticatedClient(); @@ -267,7 +267,7 @@ public async Task ReturnsDistinctEventsBasedOnStartPage() Assert.NotEqual(firstPage[0].Id, secondPage[0].Id); } - [IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")] + [IntegrationTest] public async Task ReturnsDistinctEventsBasedOnStartPageWithRepositoryId() { var github = Helper.GetAuthenticatedClient();