mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-30 07:22:35 +01:00
Fixed broken tests and removed strict mocker
This commit is contained in:
parent
2439b9e087
commit
8581896f58
@ -27,8 +27,6 @@ namespace NzbDrone.Core.Test.JobTests
|
|||||||
.With(s => s.SeriesId = 12)
|
.With(s => s.SeriesId = 12)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
WithStrictMocker();
|
|
||||||
|
|
||||||
Mocker.GetMock<SeriesProvider>()
|
Mocker.GetMock<SeriesProvider>()
|
||||||
.Setup(p => p.GetSeries(series.SeriesId))
|
.Setup(p => p.GetSeries(series.SeriesId))
|
||||||
.Returns(series);
|
.Returns(series);
|
||||||
@ -54,8 +52,6 @@ namespace NzbDrone.Core.Test.JobTests
|
|||||||
.TheNext(1).With(s => s.SeriesId = 15)
|
.TheNext(1).With(s => s.SeriesId = 15)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
WithStrictMocker();
|
|
||||||
|
|
||||||
Mocker.GetMock<SeriesProvider>()
|
Mocker.GetMock<SeriesProvider>()
|
||||||
.Setup(p => p.GetAllSeries())
|
.Setup(p => p.GetAllSeries())
|
||||||
.Returns(series);
|
.Returns(series);
|
||||||
@ -82,8 +78,6 @@ namespace NzbDrone.Core.Test.JobTests
|
|||||||
.TheNext(1).With(s => s.SeriesId = 15)
|
.TheNext(1).With(s => s.SeriesId = 15)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
WithStrictMocker();
|
|
||||||
|
|
||||||
Mocker.GetMock<SeriesProvider>()
|
Mocker.GetMock<SeriesProvider>()
|
||||||
.Setup(p => p.GetAllSeries())
|
.Setup(p => p.GetAllSeries())
|
||||||
.Returns(series);
|
.Returns(series);
|
||||||
@ -111,8 +105,6 @@ namespace NzbDrone.Core.Test.JobTests
|
|||||||
.TheNext(1).With(s => s.SeriesId = 15)
|
.TheNext(1).With(s => s.SeriesId = 15)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
WithStrictMocker();
|
|
||||||
|
|
||||||
Mocker.GetMock<SeriesProvider>()
|
Mocker.GetMock<SeriesProvider>()
|
||||||
.Setup(p => p.GetAllSeries())
|
.Setup(p => p.GetAllSeries())
|
||||||
.Returns(series);
|
.Returns(series);
|
||||||
|
Loading…
Reference in New Issue
Block a user