From 7926a00776cf8e8169ac5a62f58cf1ef0df69a6f Mon Sep 17 00:00:00 2001 From: sbohlen Date: Mon, 26 Jul 2010 15:39:18 +0000 Subject: [PATCH] SPRNET-1297 -removal of errant temp test left over from prior troubleshooting session --- .../Factory/Config/DictionaryVariableSourceTests.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/Spring/Spring.Core.Tests/Objects/Factory/Config/DictionaryVariableSourceTests.cs b/test/Spring/Spring.Core.Tests/Objects/Factory/Config/DictionaryVariableSourceTests.cs index b9d72439..9906c89c 100644 --- a/test/Spring/Spring.Core.Tests/Objects/Factory/Config/DictionaryVariableSourceTests.cs +++ b/test/Spring/Spring.Core.Tests/Objects/Factory/Config/DictionaryVariableSourceTests.cs @@ -129,15 +129,5 @@ namespace Spring.Objects.Factory.Config Assert.Throws(() => dvs.ResolveVariable("key-not-found")); } - - [Test] - public void Test() - { - Hashtable hashtable = new Hashtable(); - hashtable.Add("KEY1", "value1"); - - Assert.False(hashtable.ContainsKey("key1")); - } - } }