Skip to content

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
analogrelay committed May 30, 2014
1 parent d0a0ba6 commit 5b5a78a
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ private static PackagesController CreateController(
Mock<ISearchService> searchService = null,
Exception readPackageException = null,
Mock<IAutomaticallyCuratePackageCommand> autoCuratePackageCmd = null,
Mock<INuGetExeDownloaderService> downloaderService = null,
Mock<IAppConfiguration> config = null,
Mock<IPackageFileService> packageFileService = null,
Mock<IEntitiesContext> entitiesContext = null,
Expand All @@ -50,7 +49,6 @@ private static PackagesController CreateController(
messageService = messageService ?? new Mock<IMessageService>();
searchService = searchService ?? CreateSearchService();
autoCuratePackageCmd = autoCuratePackageCmd ?? new Mock<IAutomaticallyCuratePackageCommand>();
downloaderService = downloaderService ?? new Mock<INuGetExeDownloaderService>(MockBehavior.Strict);
config = config ?? new Mock<IAppConfiguration>();

if (packageFileService == null)
Expand All @@ -73,7 +71,6 @@ private static PackagesController CreateController(
messageService.Object,
searchService.Object,
autoCuratePackageCmd.Object,
downloaderService.Object,
packageFileService.Object,
entitiesContext.Object,
config.Object,
Expand Down

0 comments on commit 5b5a78a

Please sign in to comment.