From 8a8332f9f1c3243430c0726c9c386db91a8118ef Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Tue, 26 May 2015 11:37:08 -0700 Subject: [PATCH] React to DbContextOptions name change --- .../InMemoryContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs b/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs index 958906623a..c9b78fad1a 100644 --- a/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs +++ b/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs @@ -24,7 +24,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.InMemory.Test { public InMemoryContext() { } - protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + protected override void OnConfiguring(EntityOptionsBuilder optionsBuilder) { // Want fresh in memory store for tests always for now optionsBuilder.UseInMemoryStore(persist: false);