mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Renamed all Core.Controllers to Core.Providers to avoid confusion between Core Controllers and MVC controllers
This commit is contained in:
parent
9515c8788a
commit
01c1943d0e
24 changed files with 125 additions and 152 deletions
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
using Gallio.Framework;
|
||||
using MbUnit.Framework;
|
||||
using MbUnit.Framework.ContractVerifiers;
|
||||
using NzbDrone.Core.Controllers;
|
||||
using NzbDrone.Core.Providers;
|
||||
|
||||
namespace NzbDrone.Core.Test
|
||||
{
|
||||
|
@ -18,7 +18,7 @@ namespace NzbDrone.Core.Test
|
|||
[Ignore("Have to find a way to mock app path for tests.")]
|
||||
public void TestSearch(string title)
|
||||
{
|
||||
var tvCont =new TvDbController();
|
||||
var tvCont =new TvDbProvider();
|
||||
var result = tvCont.SearchSeries(title);
|
||||
|
||||
Assert.AreNotEqual(0, result.Count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue