Skip to content

Commit

Permalink
Merge pull request #1199 from dampir/fix-inconsistency-gistclienttest
Browse files Browse the repository at this point in the history
Fix inconsistency in GistsClientTests
  • Loading branch information
ryangribble committed Mar 19, 2016
2 parents f354d1b + e72c7c5 commit a74cbe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Octokit.Tests/Clients/GistsClientTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using NSubstitute;
using Octokit;
using Octokit.Internal;
using Octokit.Tests.Helpers;
using System;
using System.Collections.Generic;
using System.Net;
Expand All @@ -24,7 +23,7 @@ public void RequestsCorrectUrl()
}
}

public class TheGetAllMethods
public class TheGetAllMethod
{
[Fact]
public void RequestsCorrectGetAllUrl()
Expand All @@ -42,6 +41,7 @@ public void RequestsCorrectGetAllWithSinceUrl()
{
var connection = Substitute.For<IApiConnection>();
var client = new GistsClient(connection);

DateTimeOffset since = DateTimeOffset.Now;
client.GetAll(since);

Expand Down

0 comments on commit a74cbe7

Please sign in to comment.