Skip to content

Commit

Permalink
Fixed test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Kralizek committed Jan 26, 2019
1 parent e4c0308 commit 56381de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public async Task Host_can_loopback_commands(ServiceCollection services, FirstTe
}

[Test, AutoMoqData]
public async Task Host_can_loopback_events(ServiceCollection services, FirstTestEvent testEvent, EventReceivedAsync<FirstTestEvent> eventReceived)
public async Task Host_can_loopback_events(ServiceCollection services, FirstTestEvent testEvent, EventReceived<FirstTestEvent> eventReceived)
{
services.AddLogging(l => l.AddDebug());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public async Task Host_can_loopback_commands(FakeServer server, FirstTestCommand
}

[Test, AutoMoqData]
public async Task Host_can_loopback_events(FakeServer server, FirstTestEvent testEvent, EventReceivedAsync<FirstTestEvent> eventReceived)
public async Task Host_can_loopback_events(FakeServer server, FirstTestEvent testEvent, EventReceived<FirstTestEvent> eventReceived)
{
var host = TestUtils.CreateNybusHost(nybus =>
{
Expand Down

0 comments on commit 56381de

Please sign in to comment.