Merge pull request #675 from NeilQ/fix-eventbus-test-classname
Thanks! 👍
Fix classname of EventBus.Test models
This commit is contained in:
commit
453a925724
@ -6,11 +6,11 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace EventBus.Tests
|
namespace EventBus.Tests
|
||||||
{
|
{
|
||||||
public class TestIntegrationOtherEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
|
public class TestIntegrationEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
|
||||||
{
|
{
|
||||||
public bool Handled { get; private set; }
|
public bool Handled { get; private set; }
|
||||||
|
|
||||||
public TestIntegrationOtherEventHandler()
|
public TestIntegrationEventHandler()
|
||||||
{
|
{
|
||||||
Handled = false;
|
Handled = false;
|
||||||
}
|
}
|
||||||
|
@ -6,11 +6,11 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace EventBus.Tests
|
namespace EventBus.Tests
|
||||||
{
|
{
|
||||||
public class TestIntegrationEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
|
public class TestIntegrationOtherEventHandler : IIntegrationEventHandler<TestIntegrationEvent>
|
||||||
{
|
{
|
||||||
public bool Handled { get; private set; }
|
public bool Handled { get; private set; }
|
||||||
|
|
||||||
public TestIntegrationEventHandler()
|
public TestIntegrationOtherEventHandler()
|
||||||
{
|
{
|
||||||
Handled = false;
|
Handled = false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user