ci(build): Fixes a number of warnings for a cleaner build (#2529)

* Fixing a number of warnings for a cleaner build

* Removing extra Summary slashes
This commit is contained in:
Chris Simpson
2022-08-08 16:20:37 +01:00
committed by GitHub
parent 5d4c928ee6
commit 651d9818c7
11 changed files with 15 additions and 74 deletions
@@ -17,19 +17,5 @@ namespace Octokit.Tests.Reactive
Assert.Throws<ArgumentNullException>(() => new ObservableReactionsClient(null));
}
}
public class TheDeleteMethod
{
[Fact]
public void PostsToCorrectUrl()
{
var gitHubClient = Substitute.For<IGitHubClient>();
var client = new ObservableReactionsClient(gitHubClient);
client.Delete(13);
gitHubClient.Reaction.Received().Delete(13);
}
}
}
}