Index: test/Common/NetTopologySuite.Extensions.Tests/Features/FeatureAttributeAccessorHelperTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r716173ea7d18bb5436050eed3def1c53ac8f8aac --- test/Common/NetTopologySuite.Extensions.Tests/Features/FeatureAttributeAccessorHelperTest.cs (.../FeatureAttributeAccessorHelperTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/NetTopologySuite.Extensions.Tests/Features/FeatureAttributeAccessorHelperTest.cs (.../FeatureAttributeAccessorHelperTest.cs) (revision 716173ea7d18bb5436050eed3def1c53ac8f8aac) @@ -48,14 +48,11 @@ var testFeature = new TestFeature(); testFeature.Attributes = new DictionaryFeatureAttributeCollection(); - object value; - TestHelper.AssertIsFasterThan(70, () => { for (int i = 0; i < 10000; i++) { - value = FeatureAttributeAccessorHelper.GetAttributeValue( - testFeature, "Other", false); + FeatureAttributeAccessorHelper.GetAttributeValue(testFeature, "Other", false); } }); }