Skip to content

Commit

Permalink
Fix EventHub extension tests (#22439)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft authored Jul 5, 2021
1 parent 2387e78 commit bdb426a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public async Task EventHub_PocoBinding()
CollectionAssert.Contains(logs, $"PocoValues(foo,data)");

var categories = host.GetTestLoggerProvider().GetAllLogMessages().Select(p => p.Category);
CollectionAssert.Contains(categories, "Microsoft.Azure.WebJobs.EventHubs.EventHubListener.EventProcessor");
CollectionAssert.Contains(categories, "Microsoft.Azure.WebJobs.EventHubs.Listeners.EventHubListener.EventProcessor");
}

[Test]
Expand All @@ -77,7 +77,7 @@ public async Task EventHub_StringBinding()
CollectionAssert.Contains(logs, $"Input(data)");

var categories = host.GetTestLoggerProvider().GetAllLogMessages().Select(p => p.Category);
CollectionAssert.Contains(categories, "Microsoft.Azure.WebJobs.EventHubs.EventHubListener.EventProcessor");
CollectionAssert.Contains(categories, "Microsoft.Azure.WebJobs.EventHubs.Listeners.EventHubListener.EventProcessor");
}
}

Expand Down

0 comments on commit bdb426a

Please sign in to comment.