SPRNET-1383 removing NET_3_5 exclusion pragma around prior-failing test (ommitted this change as part of the prior commit)

This commit is contained in:
Steve Bohlen
2012-04-17 17:51:04 -04:00
parent 523d55a9a2
commit 1793d6c818

View File

@@ -65,7 +65,7 @@ namespace Spring.Objects.Factory.Config
// non-existant variable
Assert.IsNull(vs.ResolveVariable("dummy"));
}
#if !NET_3_5
[Test]
public void TestVariableResolutionFromApplicationSettingsSchema()
{
@@ -75,7 +75,6 @@ namespace Spring.Objects.Factory.Config
Assert.AreEqual(@"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\Northwind.mdb;User ID=Admin;Password=;",
vs.ResolveVariable("connection.string"));
}
#endif
}
}