@@ -20,6 +20,7 @@ private static GitHubUsageConfiguration GenConfig(params RepositoryInformation[]
2020 {
2121 return new GitHubUsageConfiguration ( repos ) ;
2222 }
23+
2324 public class TheConstructor
2425 {
2526 [ Fact ]
@@ -31,7 +32,6 @@ public void InvalidRepoCache()
3132
3233 public class TheGetPackageInformationMethod
3334 {
34-
3535 [ Fact ]
3636 public void EmptyRepoCache ( )
3737 {
@@ -106,7 +106,7 @@ public void MultiReposSameDependencyOrderedByStarCount()
106106 var gh = GenConfig ( expectedRepos ) ;
107107 var nupkgInformation = gh . GetPackageInformation ( "nupkg1" ) ;
108108
109- Assert . Equal ( Math . Min ( expectedRepos . Length , GitHubUsageConfiguration . ReposPerPackage ) , nupkgInformation . Repos . Count ) ;
109+ Assert . Equal ( Math . Min ( expectedRepos . Length , NuGetPackageGitHubInformation . ReposPerPackage ) , nupkgInformation . Repos . Count ) ;
110110 Assert . Equal ( expectedRepos . Length , nupkgInformation . TotalRepos ) ;
111111
112112 // Make sure they're ordered by descending order of stars
@@ -140,7 +140,7 @@ public void OrderedByStarCountThenByIdThenTrimmed()
140140 var gh = GenConfig ( expectedRepos ) ;
141141 var nupkgInformation = gh . GetPackageInformation ( "nupkg1" ) ;
142142
143- Assert . Equal ( Math . Min ( expectedRepos . Length , GitHubUsageConfiguration . ReposPerPackage ) , nupkgInformation . Repos . Count ) ;
143+ Assert . Equal ( Math . Min ( expectedRepos . Length , NuGetPackageGitHubInformation . ReposPerPackage ) , nupkgInformation . Repos . Count ) ;
144144 Assert . Equal ( expectedRepos . Length , nupkgInformation . TotalRepos ) ;
145145
146146 Assert . Equal (
0 commit comments