Add disposable

This commit is contained in:
Andre Rodrigues
2013-12-06 09:46:28 +00:00
parent 2ab931b541
commit 891a353e16
3 changed files with 3 additions and 3 deletions
@@ -7,7 +7,7 @@ using Octokit;
using Octokit.Tests.Integration;
using Xunit;
public class IssuesEventsClientTests
public class IssuesEventsClientTests : IDisposable
{
readonly IGitHubClient _gitHubClient;
readonly IIssuesEventsClient _issuesEventsClientClient;
@@ -8,7 +8,7 @@ using Octokit;
using Octokit.Tests.Integration;
using Xunit;
public class IssuesLabelsClientTests
public class IssuesLabelsClientTests : IDisposable
{
readonly IGitHubClient _gitHubClient;
readonly IIssuesLabelsClient _issuesLabelsClient;
+1 -1
View File
@@ -386,7 +386,7 @@ namespace Octokit
/// <returns></returns>
public static Uri Labels(string owner, string repo)
{
return "repos/{0}/{1}/labels/".FormatUri(owner, repo);
return "repos/{0}/{1}/labels".FormatUri(owner, repo);
}
/// <summary>