From 616ccb514ff9a4e24cc941d3dd2d1c2fac52cf80 Mon Sep 17 00:00:00 2001 From: ajcvickers Date: Wed, 11 Mar 2015 13:55:31 -0700 Subject: [PATCH] Missed update to use builder in one place --- .../MigrationsEndPointMiddlewareTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/MigrationsEndPointMiddlewareTest.cs b/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/MigrationsEndPointMiddlewareTest.cs index b752193356..863fb9ffa1 100644 --- a/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/MigrationsEndPointMiddlewareTest.cs +++ b/test/Microsoft.AspNet.Diagnostics.Entity.FunctionalTests/MigrationsEndPointMiddlewareTest.cs @@ -87,7 +87,7 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests } }); - using (var db = BloggingContextWithMigrations.CreateWithoutExternalServiceProvider(options)) + using (var db = BloggingContextWithMigrations.CreateWithoutExternalServiceProvider(optionsBuilder.Options)) { Assert.False(db.Database.AsRelational().Exists());