Merge pull request #32 from dotnet-architecture/dev

upd fork
This commit is contained in:
Taras Kovalenko 2018-07-24 13:23:02 +03:00 committed by GitHub
commit 17637141c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}