mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
TVDb exceptions are now ignored.
This commit is contained in:
parent
ed9460da66
commit
8ee8ae79c0
1 changed files with 8 additions and 0 deletions
|
@ -9,7 +9,9 @@
|
|||
using NzbDrone.Common;
|
||||
using NzbDrone.Core.Providers;
|
||||
using NzbDrone.Core.Test.Framework;
|
||||
using NzbDrone.Test.Common;
|
||||
using TvdbLib.Data;
|
||||
using TvdbLib.Exceptions;
|
||||
|
||||
namespace NzbDrone.Core.Test.ProviderTests
|
||||
{
|
||||
|
@ -25,6 +27,12 @@ public void Setup()
|
|||
tvDbProvider = new StandardKernel().Get<TvDbProvider>();
|
||||
}
|
||||
|
||||
[TearDown]
|
||||
public void TearDown()
|
||||
{
|
||||
ExceptionVerification.MarkInconclusive(typeof(TvdbNotAvailableException));
|
||||
}
|
||||
|
||||
[TestCase("The Simpsons")]
|
||||
[TestCase("Family Guy")]
|
||||
[TestCase("South Park")]
|
||||
|
|
Loading…
Reference in a new issue