From a783d05abbdd92c90e7b9c27b6ac81dfedc4215b Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Wed, 6 Apr 2016 22:28:47 +0700 Subject: [PATCH] Type in GetTestConstructorsClasses was replaced. --- Octokit.Tests.Conventions/ClientConstructorTests.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Octokit.Tests.Conventions/ClientConstructorTests.cs b/Octokit.Tests.Conventions/ClientConstructorTests.cs index cbbddee6..2fae7a8d 100644 --- a/Octokit.Tests.Conventions/ClientConstructorTests.cs +++ b/Octokit.Tests.Conventions/ClientConstructorTests.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Linq; -using Octokit.Tests.Clients; using Xunit; namespace Octokit.Tests.Conventions @@ -23,7 +22,7 @@ namespace Octokit.Tests.Conventions public static IEnumerable GetTestConstructorsClasses() { - var tests = typeof(EventsClientTests) + var tests = typeof(GitHubClientTests) .Assembly .ExportedTypes .Where(type => type.IsClass && type.IsPublic && type.Name.EndsWith("ClientTests"))