fix some grammar and tests

This commit is contained in:
maddin2016
2016-06-09 15:06:02 +02:00
parent 8db1c10bcb
commit ccd9654727
8 changed files with 15 additions and 10 deletions
@@ -1,10 +1,11 @@
using Octokit;
using Octokit.Tests.Integration;
using Octokit.Tests.Integration.Helpers;
using System;
using System.Threading.Tasks;
using Xunit;
public class PullRequestReviewCommentReactionsClientTests
public class PullRequestReviewCommentReactionsClientTests : IDisposable
{
private readonly IGitHubClient _github;
private readonly IPullRequestReviewCommentsClient _client;
@@ -142,6 +143,11 @@ public class PullRequestReviewCommentReactionsClientTests
Assert.Equal(position, comment.Position);
}
public void Dispose()
{
_context.Dispose();
}
class PullRequestData
{
public int Number { get; set; }