Skip to content

Commit bdb426a

Browse files
Fix EventHub extension tests (Azure#22439)
1 parent 2387e78 commit bdb426a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/tests/EventHubEndToEndTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public async Task EventHub_PocoBinding()
5959
CollectionAssert.Contains(logs, $"PocoValues(foo,data)");
6060

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

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

7979
var categories = host.GetTestLoggerProvider().GetAllLogMessages().Select(p => p.Category);
80-
CollectionAssert.Contains(categories, "Microsoft.Azure.WebJobs.EventHubs.EventHubListener.EventProcessor");
80+
CollectionAssert.Contains(categories, "Microsoft.Azure.WebJobs.EventHubs.Listeners.EventHubListener.EventProcessor");
8181
}
8282
}
8383

0 commit comments

Comments
 (0)