Fixed: Calculates wrong age for releases pushed via ReleasePush api

This commit is contained in:
Qstick
2017-10-28 22:52:36 -04:00
parent c5661cba04
commit 641f8a88fa
5 changed files with 49 additions and 1 deletions
@@ -50,6 +50,7 @@ namespace NzbDrone.Integration.Test
public NotificationClient Notifications;
public ClientBase<QualityProfileResource> Profiles;
public ReleaseClient Releases;
public ReleasePushClient ReleasePush;
public ClientBase<RootFolderResource> RootFolders;
public ArtistClient Artist;
public ClientBase<TagResource> Tags;
@@ -111,6 +112,7 @@ namespace NzbDrone.Integration.Test
Notifications = new NotificationClient(RestClient, ApiKey);
Profiles = new ClientBase<QualityProfileResource>(RestClient, ApiKey);
Releases = new ReleaseClient(RestClient, ApiKey);
ReleasePush = new ReleasePushClient(RestClient, ApiKey);
RootFolders = new ClientBase<RootFolderResource>(RestClient, ApiKey);
Artist = new ArtistClient(RestClient, ApiKey);
Tags = new ClientBase<TagResource>(RestClient, ApiKey);