fix classname of EventBus.Test models

This commit is contained in:
Chen 2018-07-21 18:00:05 +08:00
parent c01a1f7008
commit 8f5aa5c554
2 changed files with 4 additions and 4 deletions

View File

@ -6,11 +6,11 @@ using System.Threading.Tasks;
namespace EventBus.Tests
{
public class TestIntegrationOtherEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
public class TestIntegrationEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
{
public bool Handled { get; private set; }
public TestIntegrationOtherEventHandler()
public TestIntegrationEventHandler()
{
Handled = false;
}

View File

@ -6,11 +6,11 @@ using System.Threading.Tasks;
namespace EventBus.Tests
{
public class TestIntegrationEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
public class TestIntegrationOtherEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
{
public bool Handled { get; private set; }
public TestIntegrationEventHandler()
public TestIntegrationOtherEventHandler()
{
Handled = false;
}