From f81c238a598d13bff200c5b763cb7caf677e2fb4 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 22 Sep 2015 08:35:16 -0700 Subject: [PATCH] Reacting to IChangeToken changes --- .../StaticFileContextTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNet.StaticFiles.Tests/StaticFileContextTest.cs b/test/Microsoft.AspNet.StaticFiles.Tests/StaticFileContextTest.cs index de8a9753fb..d67834931e 100644 --- a/test/Microsoft.AspNet.StaticFiles.Tests/StaticFileContextTest.cs +++ b/test/Microsoft.AspNet.StaticFiles.Tests/StaticFileContextTest.cs @@ -7,8 +7,8 @@ using System.IO; using Microsoft.AspNet.FileProviders; using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Internal; -using Microsoft.Framework.Caching; using Microsoft.Framework.Logging.Testing; +using Microsoft.Framework.Primitives; using Xunit; namespace Microsoft.AspNet.StaticFiles @@ -81,7 +81,7 @@ namespace Microsoft.AspNet.StaticFiles return new NotFoundFileInfo(); } - public IExpirationTrigger Watch(string filter) + public IChangeToken Watch(string filter) { throw new NotSupportedException(); }