mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 19:26:51 +00:00
fix some grammar and tests
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user