Reformat and apply Stylecop rules

This commit is contained in:
ta264
2019-12-22 22:08:53 +00:00
committed by Qstick
parent d4fa9b7345
commit f02fa629cc
1186 changed files with 7105 additions and 5616 deletions
@@ -5,7 +5,6 @@ using NUnit.Framework;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.Configuration
{
[TestFixture]
@@ -16,7 +15,6 @@ namespace NzbDrone.Core.Test.Configuration
{
Mocker.GetMock<IConfigRepository>().Setup(c => c.All())
.Returns(new List<Config> { new Config { Key = "key1", Value = "Value1" } });
}
[Test]
@@ -28,6 +26,5 @@ namespace NzbDrone.Core.Test.Configuration
Mocker.GetMock<IConfigRepository>().Verify(c => c.All(), Times.Once());
}
}
}