mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
@@ -1,17 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using FizzWare.NBuilder;
|
||||
using FluentAssertions;
|
||||
using Moq;
|
||||
using NzbDrone.Core.Test.Framework;
|
||||
using NUnit.Framework;
|
||||
using NzbDrone.Core.Download.TrackedDownloads;
|
||||
using NzbDrone.Core.History;
|
||||
using NzbDrone.Core.Music;
|
||||
using NzbDrone.Core.Queue;
|
||||
using NzbDrone.Core.Parser.Model;
|
||||
|
||||
using NzbDrone.Core.Queue;
|
||||
using NzbDrone.Core.Test.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Test.QueueTests
|
||||
{
|
||||
@@ -52,10 +51,8 @@ namespace NzbDrone.Core.Test.QueueTests
|
||||
.Build();
|
||||
|
||||
Mocker.GetMock<IHistoryService>()
|
||||
.Setup(c => c.Find(It.IsAny<string>(), HistoryEventType.Grabbed)).Returns
|
||||
(
|
||||
new List<History.History> { historyItem }
|
||||
);
|
||||
.Setup(c => c.Find(It.IsAny<string>(), HistoryEventType.Grabbed)).Returns(
|
||||
new List<History.History> { historyItem });
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
||||
Reference in New Issue
Block a user