From 19641453f50e9f87c46ffb30fbef1bdb9370662a Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Fri, 25 Sep 2015 10:23:31 -0700 Subject: [PATCH] React to EF API change --- .../InMemoryContext.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs b/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs index 8e1e910618..2f5281fc45 100644 --- a/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs +++ b/test/Microsoft.AspNet.Identity.EntityFramework.InMemory.Test/InMemoryContext.cs @@ -26,8 +26,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.InMemory.Test protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { - // Want fresh in memory store for tests always for now - optionsBuilder.UseInMemoryDatabase(persist: false); + optionsBuilder.UseInMemoryDatabase(); } } } \ No newline at end of file