diff --git a/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj b/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj
index 4f5cb8ad84..f43d82dd19 100644
--- a/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj
+++ b/test/DistEvents/DistDemoApp.Shared/DistDemoApp.Shared.csproj
@@ -17,7 +17,7 @@
-
+
diff --git a/test/DistEvents/DistDemoApp.Shared/DistDemoAppSharedModule.cs b/test/DistEvents/DistDemoApp.Shared/DistDemoAppSharedModule.cs
index 138b64f567..936264e828 100644
--- a/test/DistEvents/DistDemoApp.Shared/DistDemoAppSharedModule.cs
+++ b/test/DistEvents/DistDemoApp.Shared/DistDemoAppSharedModule.cs
@@ -5,7 +5,7 @@ using StackExchange.Redis;
using Volo.Abp.Autofac;
using Volo.Abp.Domain;
using Volo.Abp.Domain.Entities.Events.Distributed;
-using Volo.Abp.EventBus.Boxes;
+using Volo.Abp.EventBus;
using Volo.Abp.Modularity;
namespace DistDemoApp
@@ -13,8 +13,8 @@ namespace DistDemoApp
[DependsOn(
typeof(AbpAutofacModule),
typeof(AbpDddDomainModule),
- typeof(AbpEventBusBoxesModule)
- )]
+ typeof(AbpEventBusModule)
+ )]
public class DistDemoAppSharedModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
@@ -28,7 +28,7 @@ namespace DistDemoApp
options.EtoMappings.Add();
options.AutoEventSelectors.Add();
});
-
+
context.Services.AddSingleton(sp =>
{
var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]);
@@ -36,4 +36,4 @@ namespace DistDemoApp
});
}
}
-}
\ No newline at end of file
+}