Red Tests were fixed

Unused 'using' directive were removed.
This commit is contained in:
aedampir@gmail.com
2016-04-06 14:39:41 +07:00
parent 3f8f782273
commit d0c8e82453
52 changed files with 341 additions and 71 deletions
@@ -6,6 +6,16 @@ namespace Octokit.Tests.Clients
{
public class NotificationsClientTests
{
public class TheCtor
{
[Fact]
public void EnsuresNonNullArguments()
{
Assert.Throws<ArgumentNullException>(
() => new NotificationsClient(null));
}
}
public class TheGetAllForCurrentMethod
{
[Fact]