mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Fixing merge + code styling
This commit is contained in:
parent
bfe1e6aa01
commit
ccdeeab4d6
@ -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);
|
||||
}
|
||||
|
||||
|
@ -69,7 +69,7 @@ namespace Orchard.Email.Activities {
|
||||
{"ReplyTo", replyTo},
|
||||
{"Bcc", bcc},
|
||||
{"CC", cc},
|
||||
{"NotifyReadEmail",notifyReadEmail }
|
||||
{"NotifyReadEmail", notifyReadEmail }
|
||||
};
|
||||
|
||||
if (string.IsNullOrWhiteSpace(recipients)) {
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user