From 5268e1e54dc236f57e410fc5d68172b83b7f1bb9 Mon Sep 17 00:00:00 2001 From: lahma Date: Thu, 26 Nov 2009 14:24:29 +0000 Subject: [PATCH] Fixed ManagedDictionaryTests to work with framework 1.1 --- .../Objects/Factory/Support/ManagedDictionaryTests.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Spring/Spring.Core.Tests/Objects/Factory/Support/ManagedDictionaryTests.cs b/test/Spring/Spring.Core.Tests/Objects/Factory/Support/ManagedDictionaryTests.cs index c2862402..8db87163 100644 --- a/test/Spring/Spring.Core.Tests/Objects/Factory/Support/ManagedDictionaryTests.cs +++ b/test/Spring/Spring.Core.Tests/Objects/Factory/Support/ManagedDictionaryTests.cs @@ -21,10 +21,11 @@ using System; using System.Collections; using NUnit.Framework; -#if NET_2_0 -using System.Collections.Generic; + using Spring.Objects.Factory.Config; +#if NET_2_0 +using System.Collections.Generic; #endif namespace Spring.Objects.Factory.Support