mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
moved config to objectdb.
This commit is contained in:
parent
65061cdc96
commit
13658e3c6d
88 changed files with 627 additions and 586 deletions
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using FluentAssertions;
|
||||
using Moq;
|
||||
using NUnit.Framework;
|
||||
using NzbDrone.Core.Configuration;
|
||||
using NzbDrone.Core.Jobs;
|
||||
using NzbDrone.Core.Model.Notification;
|
||||
using NzbDrone.Core.Providers;
|
||||
|
@ -18,7 +19,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
{
|
||||
public void WithMinutes(int minutes)
|
||||
{
|
||||
Mocker.GetMock<ConfigProvider>().SetupGet(s => s.RssSyncInterval).Returns(minutes);
|
||||
Mocker.GetMock<ConfigService>().SetupGet(s => s.RssSyncInterval).Returns(minutes);
|
||||
}
|
||||
|
||||
[TestCase(10)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue