1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Remove trailing whitespace

This commit is contained in:
ta264
2019-12-22 21:24:11 +00:00
committed by Qstick
parent 8d27111f7b
commit d4fa9b7345
273 changed files with 566 additions and 555 deletions
+17 -17
View File
@@ -9,7 +9,7 @@ using NzbDrone.Test.Common;
namespace NzbDrone.Core.Test
{
[TestFixture]
public class FluentTest : CoreTest
{
[TestCase(null, "def", "def")]
@@ -87,10 +87,10 @@ namespace NzbDrone.Core.Test
[Test]
public void MaxOrDefault_should_return_zero_when_collection_is_empty()
{
var result = (new List<int>()).MaxOrDefault();
//Resolve
@@ -100,10 +100,10 @@ namespace NzbDrone.Core.Test
[Test]
public void MaxOrDefault_should_return_max_when_collection_is_not_empty()
{
var list = new List<int> { 6, 4, 5, 3, 8, 10 };
var result = list.MaxOrDefault();
//Resolve
@@ -113,10 +113,10 @@ namespace NzbDrone.Core.Test
[Test]
public void MaxOrDefault_should_return_zero_when_collection_is_null()
{
List<int> list = null;
var result = list.MaxOrDefault();
//Resolve
@@ -126,10 +126,10 @@ namespace NzbDrone.Core.Test
[Test]
public void Truncate_should_truncate_strings_to_max_specified_number_of_bytes()
{
var str = ReadAllText("Files/LongOverview.txt");
var resultString = str.Truncate(1000);
//Resolve
@@ -140,10 +140,10 @@ namespace NzbDrone.Core.Test
[Test]
public void Truncate_should_not_truncate_string_shorter_than_max_bytes()
{
var str = "Hello World";
var resultString = str.Truncate(1000);
//Resolve
@@ -154,10 +154,10 @@ namespace NzbDrone.Core.Test
[Test]
public void MinOrDefault_should_return_zero_when_collection_is_empty()
{
var result = (new List<int>()).MinOrDefault();
//Resolve
@@ -167,10 +167,10 @@ namespace NzbDrone.Core.Test
[Test]
public void MinOrDefault_should_return_min_when_collection_is_not_empty()
{
var list = new List<int> { 6, 4, 5, 3, 8, 10 };
var result = list.MinOrDefault();
//Resolve
@@ -180,10 +180,10 @@ namespace NzbDrone.Core.Test
[Test]
public void MinOrDefault_should_return_zero_when_collection_is_null()
{
List<int> list = null;
var result = list.MinOrDefault();
//Resolve