diff --git a/test/Spring/Spring.Core.Tests/Pool/Support/SimplePoolTest.cs b/test/Spring/Spring.Core.Tests/Pool/Support/SimplePoolTest.cs index f251b15d..b0fa49fb 100644 --- a/test/Spring/Spring.Core.Tests/Pool/Support/SimplePoolTest.cs +++ b/test/Spring/Spring.Core.Tests/Pool/Support/SimplePoolTest.cs @@ -183,6 +183,7 @@ namespace Spring.Pool } [Test, ExpectedException(typeof (PoolException))] + [Ignore("No longer expected behavior per SPRNET-1582 being resolved.")] public void NoMoreUsableAfterClose() { object o = pool.BorrowObject(); @@ -195,7 +196,8 @@ namespace Spring.Pool } [Test, ExpectedException(typeof (PoolException))] - public void ThrowsExceptionWhenOutOfItemsBecauseFailedValidation() + [Ignore("No longer expected behavior per SPRNET-1582 being resolved.")] + public void ThrowsExceptionWhenOutOfItemsBecauseFailedValidation() { object o = new object(); Expect.Call(factory.MakeObject()).Return(o);