mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Fixed: Issue saving notifications
This commit is contained in:
parent
fb6e365c1a
commit
36a5eea951
5 changed files with 69 additions and 1 deletions
|
@ -35,6 +35,7 @@ namespace NzbDrone.Integration.Test
|
|||
protected IndexerClient Indexers;
|
||||
protected EpisodeClient Episodes;
|
||||
protected ClientBase<NamingConfigResource> NamingConfig;
|
||||
protected NotificationClient Notifications;
|
||||
|
||||
private NzbDroneRunner _runner;
|
||||
private List<SignalRMessage> _signalRReceived;
|
||||
|
@ -80,6 +81,7 @@ namespace NzbDrone.Integration.Test
|
|||
Indexers = new IndexerClient(RestClient, _runner.ApiKey);
|
||||
Episodes = new EpisodeClient(RestClient, _runner.ApiKey);
|
||||
NamingConfig = new ClientBase<NamingConfigResource>(RestClient, _runner.ApiKey, "config/naming");
|
||||
Notifications = new NotificationClient(RestClient, _runner.ApiKey);
|
||||
}
|
||||
|
||||
[TestFixtureTearDown]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue