From b283a6f34df2600be72046a56af6710033489708 Mon Sep 17 00:00:00 2001 From: Steve Bohlen Date: Sun, 22 Nov 2015 16:05:35 -0500 Subject: [PATCH] updating tests to reflect change of behavior introduced by fix to SPRNET-1582 --- test/Spring/Spring.Core.Tests/Pool/Support/SimplePoolTest.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);