Fixing merge + code styling

This commit is contained in:
Benedek Farkas 2024-03-08 18:17:52 +01:00
parent bfe1e6aa01
commit ccdeeab4d6
3 changed files with 3 additions and 10 deletions

View File

@ -1,15 +1,9 @@
using System.Collections.Generic;
using Autofac;
using Moq;
using NUnit.Framework;
using Orchard.ContentManagement.Records;
using Orchard.DisplayManagement;
using Orchard.Email.Services;
using Orchard.Messaging.Events;
using Orchard.Messaging.Services;
using Orchard.Tests.Messaging;
using Orchard.Tests.Modules.Stubs;
using Orchard.Tests.Utility;
namespace Orchard.Tests.Modules.Email {
[TestFixture]
@ -30,10 +24,10 @@ namespace Orchard.Tests.Modules.Email {
var container = builder.Build();
_messageService = container.Resolve<IMessageService>();
}
[Test]
public void CanSendEmailUsingAddresses() {
_messageService.Send("Email", new Dictionary<string, object>() { {"", null} });
_messageService.Send("Email", new Dictionary<string, object>() { { "", null } });
Assert.That(_smtpChannel.Processed, Is.Not.Null);
}

View File

@ -69,7 +69,7 @@ namespace Orchard.Email.Activities {
{"ReplyTo", replyTo},
{"Bcc", bcc},
{"CC", cc},
{"NotifyReadEmail",notifyReadEmail }
{"NotifyReadEmail", notifyReadEmail }
};
if (string.IsNullOrWhiteSpace(recipients)) {

View File

@ -74,7 +74,6 @@
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
</Reference>
<Reference Include="System" />
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>