* Stylecop Rules and Fixes
This commit is contained in:
Qstick
2020-01-03 07:49:24 -05:00
committed by GitHub
parent 63d669178d
commit f77a2feeef
1307 changed files with 8704 additions and 7404 deletions
@@ -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]