From a8c37e57dec22ebbc631f911118aadf4685eaae9 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Wed, 24 Jun 2015 09:02:58 -0700 Subject: [PATCH] Fix build break: React to aspnet/EventNotification#11 - also aspnet/EventNotification@14e8e85 - `NotifierMethodAdapter` was renamed to `ProxyNotifierMethodAdapter` --- test/Microsoft.AspNet.Mvc.Core.Test/MvcRouteHandlerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.Mvc.Core.Test/MvcRouteHandlerTests.cs b/test/Microsoft.AspNet.Mvc.Core.Test/MvcRouteHandlerTests.cs index e56f822ca8..2140f03309 100644 --- a/test/Microsoft.AspNet.Mvc.Core.Test/MvcRouteHandlerTests.cs +++ b/test/Microsoft.AspNet.Mvc.Core.Test/MvcRouteHandlerTests.cs @@ -227,7 +227,7 @@ namespace Microsoft.AspNet.Mvc optionsAccessor = new MockMvcOptionsAccessor(); } - var notifier = new Notifier(new NotifierMethodAdapter()); + var notifier = new Notifier(new ProxyNotifierMethodAdapter()); if (notificationListener != null) { notifier.EnlistTarget(notificationListener);