Fixed most of the broken tests

This commit is contained in:
Mark McDowall 2013-02-04 20:07:07 -08:00 committed by kay.one
commit 7ed148b12c
31 changed files with 293 additions and 297 deletions

View file

@ -23,7 +23,7 @@ namespace NzbDrone.Api.RootFolders
private Response AddRootFolder()
{
var dir = _rootFolderService.Add(Request.Body.FromJson<RootDir>());
var dir = _rootFolderService.Add(Request.Body.FromJson<RootFolder>());
return dir.AsResponse(HttpStatusCode.Created);
}