1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed broken decision engine tests

This commit is contained in:
Mark McDowall 2014-02-22 00:59:05 -08:00
parent 78dacf6850
commit 515901d1be

View File

@ -67,7 +67,7 @@ public void Setup()
private void GivenSpecifications(params Mock<IDecisionEngineSpecification>[] mocks)
{
Mocker.SetConstant<IEnumerable<IRejectWithReason>>(mocks.Select(c => c.Object));
Mocker.SetConstant<IEnumerable<IDecisionEngineSpecification>>(mocks.Select(c => c.Object));
}
[Test]