Corrected various spelling errors in code.
This commit is contained in:
parent
326ecf1c14
commit
ed99fa8698
|
@ -61,7 +61,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="ArchiveProvider.cs" />
|
<Compile Include="ArchiveProvider.cs" />
|
||||||
<Compile Include="Cache\Cached.cs" />
|
<Compile Include="Cache\Cached.cs" />
|
||||||
<Compile Include="Cache\CacheManger.cs" />
|
<Compile Include="Cache\CacheManager.cs" />
|
||||||
<Compile Include="Cache\ICached.cs" />
|
<Compile Include="Cache\ICached.cs" />
|
||||||
<Compile Include="Composition\Container.cs" />
|
<Compile Include="Composition\Container.cs" />
|
||||||
<Compile Include="Composition\IContainer.cs" />
|
<Compile Include="Composition\IContainer.cs" />
|
||||||
|
|
|
@ -5,7 +5,7 @@ using Marr.Data;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Datastore.Converters;
|
using NzbDrone.Core.Datastore.Converters;
|
||||||
using NzbDrone.Core.Datastore.Extentions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
using NzbDrone.Core.Tv;
|
using NzbDrone.Core.Tv;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.Datastore
|
namespace NzbDrone.Core.Test.Datastore
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Datastore.Extentions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
using NzbDrone.Core.Tv;
|
using NzbDrone.Core.Tv;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.Datastore.PagingSpecExtenstionsTests
|
namespace NzbDrone.Core.Test.Datastore.PagingSpecExtensionsTests
|
||||||
{
|
{
|
||||||
public class PagingOffsetFixture
|
public class PagingOffsetFixture
|
||||||
{
|
{
|
|
@ -1,10 +1,10 @@
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Datastore.Extentions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
using NzbDrone.Core.Tv;
|
using NzbDrone.Core.Tv;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Test.Datastore.PagingSpecExtenstionsTests
|
namespace NzbDrone.Core.Test.Datastore.PagingSpecExtensionsTests
|
||||||
{
|
{
|
||||||
public class ToSortDirectionFixture
|
public class ToSortDirectionFixture
|
||||||
{
|
{
|
|
@ -103,8 +103,8 @@
|
||||||
<Compile Include="Datastore\DatabaseRelationshipFixture.cs" />
|
<Compile Include="Datastore\DatabaseRelationshipFixture.cs" />
|
||||||
<Compile Include="Datastore\MappingExtentionFixture.cs" />
|
<Compile Include="Datastore\MappingExtentionFixture.cs" />
|
||||||
<Compile Include="Datastore\ObjectDatabaseFixture.cs" />
|
<Compile Include="Datastore\ObjectDatabaseFixture.cs" />
|
||||||
<Compile Include="Datastore\PagingSpecExtenstionsTests\ToSortDirectionFixture.cs" />
|
<Compile Include="Datastore\PagingSpecExtensionsTests\ToSortDirectionFixture.cs" />
|
||||||
<Compile Include="Datastore\PagingSpecExtenstionsTests\PagingOffsetFixture.cs" />
|
<Compile Include="Datastore\PagingSpecExtensionsTests\PagingOffsetFixture.cs" />
|
||||||
<Compile Include="Datastore\ReflectionStrategyFixture\Benchmarks.cs" />
|
<Compile Include="Datastore\ReflectionStrategyFixture\Benchmarks.cs" />
|
||||||
<Compile Include="Datastore\SQLiteMigrationHelperTests\AlterFixture.cs" />
|
<Compile Include="Datastore\SQLiteMigrationHelperTests\AlterFixture.cs" />
|
||||||
<Compile Include="Datastore\SQLiteMigrationHelperTests\DuplicateFixture.cs" />
|
<Compile Include="Datastore\SQLiteMigrationHelperTests\DuplicateFixture.cs" />
|
||||||
|
|
|
@ -128,7 +128,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
||||||
Subject.Execute(new ApplicationUpdateCommand());
|
Subject.Execute(new ApplicationUpdateCommand());
|
||||||
|
|
||||||
|
|
||||||
ExceptionVerification.AssertNoUnexcpectedLogs();
|
ExceptionVerification.AssertNoUnexpectedLogs();
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
|
|
@ -6,7 +6,7 @@ using Marr.Data;
|
||||||
using Marr.Data.QGen;
|
using Marr.Data.QGen;
|
||||||
using NzbDrone.Core.Datastore.Events;
|
using NzbDrone.Core.Datastore.Events;
|
||||||
using NzbDrone.Common;
|
using NzbDrone.Common;
|
||||||
using NzbDrone.Core.Datastore.Extentions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
using NzbDrone.Core.Messaging.Events;
|
using NzbDrone.Core.Messaging.Events;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ using Marr.Data;
|
||||||
using Marr.Data.Mapping;
|
using Marr.Data.Mapping;
|
||||||
using NzbDrone.Common.Reflection;
|
using NzbDrone.Common.Reflection;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Datastore.Extentions
|
namespace NzbDrone.Core.Datastore.Extensions
|
||||||
{
|
{
|
||||||
public static class MappingExtensions
|
public static class MappingExtensions
|
||||||
{
|
{
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Datastore.Extentions
|
namespace NzbDrone.Core.Datastore.Extensions
|
||||||
{
|
{
|
||||||
public static class PagingSpecExtensions
|
public static class PagingSpecExtensions
|
||||||
{
|
{
|
|
@ -4,7 +4,7 @@ using System.Linq.Expressions;
|
||||||
using Marr.Data;
|
using Marr.Data;
|
||||||
using Marr.Data.Mapping;
|
using Marr.Data.Mapping;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Datastore.Extentions
|
namespace NzbDrone.Core.Datastore.Extensions
|
||||||
{
|
{
|
||||||
public static class RelationshipExtensions
|
public static class RelationshipExtensions
|
||||||
{
|
{
|
|
@ -7,7 +7,7 @@ using NzbDrone.Core.Blacklisting;
|
||||||
using NzbDrone.Core.Configuration;
|
using NzbDrone.Core.Configuration;
|
||||||
using NzbDrone.Core.DataAugmentation.Scene;
|
using NzbDrone.Core.DataAugmentation.Scene;
|
||||||
using NzbDrone.Core.Datastore.Converters;
|
using NzbDrone.Core.Datastore.Converters;
|
||||||
using NzbDrone.Core.Datastore.Extentions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
using NzbDrone.Core.Download;
|
using NzbDrone.Core.Download;
|
||||||
using NzbDrone.Core.Indexers;
|
using NzbDrone.Core.Indexers;
|
||||||
using NzbDrone.Core.Instrumentation;
|
using NzbDrone.Core.Instrumentation;
|
||||||
|
|
|
@ -138,9 +138,9 @@
|
||||||
<Compile Include="Datastore\DbFactory.cs" />
|
<Compile Include="Datastore\DbFactory.cs" />
|
||||||
<Compile Include="Datastore\Converters\EnumIntConverter.cs" />
|
<Compile Include="Datastore\Converters\EnumIntConverter.cs" />
|
||||||
<Compile Include="Datastore\Events\ModelEvent.cs" />
|
<Compile Include="Datastore\Events\ModelEvent.cs" />
|
||||||
<Compile Include="Datastore\Extentions\MappingExtensions.cs" />
|
<Compile Include="Datastore\Extensions\MappingExtensions.cs" />
|
||||||
<Compile Include="Datastore\Extentions\PagingSpecExtensions.cs" />
|
<Compile Include="Datastore\Extensions\PagingSpecExtensions.cs" />
|
||||||
<Compile Include="Datastore\Extentions\RelationshipExtensions.cs" />
|
<Compile Include="Datastore\Extensions\RelationshipExtensions.cs" />
|
||||||
<Compile Include="Datastore\IEmbeddedDocument.cs" />
|
<Compile Include="Datastore\IEmbeddedDocument.cs" />
|
||||||
<Compile Include="Datastore\LazyList.cs" />
|
<Compile Include="Datastore\LazyList.cs" />
|
||||||
<Compile Include="Datastore\Migration\002_remove_tvrage_imdb_unique_constraint.cs" />
|
<Compile Include="Datastore\Migration\002_remove_tvrage_imdb_unique_constraint.cs" />
|
||||||
|
|
|
@ -5,7 +5,7 @@ using System.Linq;
|
||||||
using Marr.Data.QGen;
|
using Marr.Data.QGen;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Datastore.Extentions;
|
using NzbDrone.Core.Datastore.Extensions;
|
||||||
using NzbDrone.Core.Messaging.Events;
|
using NzbDrone.Core.Messaging.Events;
|
||||||
using NzbDrone.Core.MediaFiles;
|
using NzbDrone.Core.MediaFiles;
|
||||||
using NzbDrone.Core.Qualities;
|
using NzbDrone.Core.Qualities;
|
||||||
|
|
|
@ -26,7 +26,7 @@ namespace NzbDrone.Test.Common
|
||||||
_logs = new List<LogEventInfo>();
|
_logs = new List<LogEventInfo>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void AssertNoUnexcpectedLogs()
|
public static void AssertNoUnexpectedLogs()
|
||||||
{
|
{
|
||||||
ExpectedFatals(0);
|
ExpectedFatals(0);
|
||||||
ExpectedErrors(0);
|
ExpectedErrors(0);
|
||||||
|
|
|
@ -50,7 +50,7 @@ namespace NzbDrone.Test.Common
|
||||||
//https://bugs.launchpad.net/nunitv2/+bug/1076932
|
//https://bugs.launchpad.net/nunitv2/+bug/1076932
|
||||||
if (BuildInfo.IsDebug && TestContext.CurrentContext.Result.State == TestState.Success)
|
if (BuildInfo.IsDebug && TestContext.CurrentContext.Result.State == TestState.Success)
|
||||||
{
|
{
|
||||||
ExceptionVerification.AssertNoUnexcpectedLogs();
|
ExceptionVerification.AssertNoUnexpectedLogs();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
<Compile Include="LoggingTest.cs" />
|
<Compile Include="LoggingTest.cs" />
|
||||||
<Compile Include="MockerExtensions.cs" />
|
<Compile Include="MockerExtensions.cs" />
|
||||||
<Compile Include="NzbDroneRunner.cs" />
|
<Compile Include="NzbDroneRunner.cs" />
|
||||||
<Compile Include="ObjectExtentions.cs" />
|
<Compile Include="ObjectExtensions.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="ReflectionExtensions.cs" />
|
<Compile Include="ReflectionExtensions.cs" />
|
||||||
<Compile Include="StringExtensions.cs" />
|
<Compile Include="StringExtensions.cs" />
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace NzbDrone.Test.Common
|
namespace NzbDrone.Test.Common
|
||||||
{
|
{
|
||||||
public static class ObjectExtentions
|
public static class ObjectExtensions
|
||||||
{
|
{
|
||||||
public static T JsonClone<T>(this T source) where T : new()
|
public static T JsonClone<T>(this T source) where T : new()
|
||||||
{
|
{
|
Loading…
Reference in New Issue