Method of assembly determination was changed in order to use types of top level (#1273)

This commit is contained in:
Alexander Efremov
2016-04-19 18:02:36 +07:00
committed by Brendan Forster
parent 190ccf04c2
commit 494bbfda42
4 changed files with 5 additions and 5 deletions

View File

@@ -70,7 +70,7 @@ namespace Octokit.Tests.Conventions
public static bool IsClientInterface(this Type type)
{
return type.IsInterface && type.Name.EndsWith(ClientSuffix) && type.Namespace == typeof(IEventsClient).Namespace;
return type.IsInterface && type.Name.EndsWith(ClientSuffix) && type.Namespace == typeof(IGitHubClient).Namespace;
}
public static Type GetObservableClientInterface(this Type type)