* 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
@@ -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());
}
}
}
@@ -28,7 +28,6 @@ namespace NzbDrone.Core.Test.Configuration
AssertUpsert(key, value);
}
[Test]
public void Get_value_should_return_default_when_no_value()
{