Index: test/Common/SharpMap.Tests/Data/Providers/FeatureCollectionTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/SharpMap.Tests/Data/Providers/FeatureCollectionTest.cs (.../FeatureCollectionTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/SharpMap.Tests/Data/Providers/FeatureCollectionTest.cs (.../FeatureCollectionTest.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -1,5 +1,4 @@ using System; -using System.Collections; using System.Collections.Generic; using System.ComponentModel; using DelftTools.Utils; @@ -20,8 +19,7 @@ [ExpectedException(typeof(ArgumentException))] public void AddingInvalidTypeGivesArgumentException() { - IList list = new List(); - var featureCollection = new FeatureCollection(list, typeof(string)); + new FeatureCollection(new List(), typeof(string)); } [Test]