diff --git a/Octokit.Tests.Integration/Clients/RepositoryCommentsClientTests.cs b/Octokit.Tests.Integration/Clients/RepositoryCommentsClientTests.cs index 5a989b7f..448c3043 100644 --- a/Octokit.Tests.Integration/Clients/RepositoryCommentsClientTests.cs +++ b/Octokit.Tests.Integration/Clients/RepositoryCommentsClientTests.cs @@ -421,6 +421,10 @@ public class RepositoryCommentsClientTests var reaction = await _github.Repository.Comment.CreateReaction(_context.RepositoryOwner, _context.RepositoryName, result.Id, newCommitCommentReaction); Assert.IsType(reaction); + + Assert.Equal(Reaction.Confused, reaction.Content); + + Assert.Equal(result.User.Id, reaction.UserId); } public void Dispose()