From 8bc01548c56479d1c570e6398c59b2465a41a117 Mon Sep 17 00:00:00 2001 From: Tanay Parikh Date: Tue, 13 Apr 2021 13:03:40 -0700 Subject: [PATCH] Unskip `Double_dispose_does_not_enter_pool_twice` Test (#24651) Fixes: https://github.com/dotnet/efcore/issues/24590 --- test/EFCore.SqlServer.FunctionalTests/DbContextPoolingTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/EFCore.SqlServer.FunctionalTests/DbContextPoolingTest.cs b/test/EFCore.SqlServer.FunctionalTests/DbContextPoolingTest.cs index 6fe1acac933..5e0005e6b00 100644 --- a/test/EFCore.SqlServer.FunctionalTests/DbContextPoolingTest.cs +++ b/test/EFCore.SqlServer.FunctionalTests/DbContextPoolingTest.cs @@ -1041,7 +1041,7 @@ public async Task Object_in_pool_is_disposed(bool useInterface, bool async) Assert.Throws(() => context.Customers.ToList()); } - [ConditionalTheory(Skip = "Issue #24590")] + [ConditionalTheory] [InlineData(false, false)] [InlineData(true, false)] [InlineData(false, true)]