mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-30 09:49:04 +00:00
muting some broken tests
This commit is contained in:
@@ -34,7 +34,7 @@ namespace Octokit.Tests.Integration.Clients
|
||||
Assert.True(_events.All(e => e.Payload != null));
|
||||
}
|
||||
|
||||
[IntegrationTest]
|
||||
[IntegrationTest(Skip = "no longer able to access this event")]
|
||||
public void IssueCommentPayloadEventDeserializesCorrectly()
|
||||
{
|
||||
var commentEvent = _events.FirstOrDefault(e => e.Id == "2628548686");
|
||||
@@ -49,7 +49,7 @@ namespace Octokit.Tests.Integration.Clients
|
||||
Assert.Equal(742, commentPayload.Issue.Number);
|
||||
}
|
||||
|
||||
[IntegrationTest]
|
||||
[IntegrationTest(Skip = "no longer able to access this event")]
|
||||
public void PushEventPayloadDeserializesCorrectly()
|
||||
{
|
||||
var pushEvent = _events.FirstOrDefault(e => e.Id == "2628858765");
|
||||
@@ -65,7 +65,7 @@ namespace Octokit.Tests.Integration.Clients
|
||||
Assert.Equal(1, pushPayload.Size);
|
||||
}
|
||||
|
||||
[IntegrationTest]
|
||||
[IntegrationTest(Skip = "no longer able to access this event")]
|
||||
public void PREventPayloadDeserializesCorrectly()
|
||||
{
|
||||
var prEvent = _events.FirstOrDefault(e => e.Id == "2628718313");
|
||||
@@ -79,7 +79,7 @@ namespace Octokit.Tests.Integration.Clients
|
||||
Assert.Equal(743, prPayload.PullRequest.Number);
|
||||
}
|
||||
|
||||
[IntegrationTest]
|
||||
[IntegrationTest(Skip = "no longer able to access this event")]
|
||||
public void PRReviewCommentEventPayloadDeserializesCorrectly()
|
||||
{
|
||||
var prrcEvent = _events.First(e => e.Id == "2623246246");
|
||||
|
||||
Reference in New Issue
Block a user