Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2005-09-22 17:37:37 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-09-22 17:37:37 +0400
commitd79aa4a7255a492343070f502a9fc6dfdb1afe04 (patch)
tree9097af944b0c3b486e427435bc7c19e4dd68da49 /mcs/class/System.Data/Test
parentcae77287204b4301b53bfc1bf21df589a06eb9d9 (diff)
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* SqlClientPermissionAttributeTest.cs: Removed *Choice security actions. svn path=/trunk/mcs/; revision=50481
Diffstat (limited to 'mcs/class/System.Data/Test')
-rw-r--r--mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog5
-rw-r--r--mcs/class/System.Data/Test/System.Data.SqlClient/SqlClientPermissionAttributeTest.cs8
2 files changed, 5 insertions, 8 deletions
diff --git a/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog b/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
index 83e82132609..62444af55ad 100644
--- a/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
+++ b/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
+
+ * SqlClientPermissionAttributeTest.cs: Removed *Choice security
+ actions.
+
2005-09-22 Sureshkumar T <tsureshkumar@novell.com>
* SqlConnectionTest.cs (OtherConnectionStringKeywords): marked
diff --git a/mcs/class/System.Data/Test/System.Data.SqlClient/SqlClientPermissionAttributeTest.cs b/mcs/class/System.Data/Test/System.Data.SqlClient/SqlClientPermissionAttributeTest.cs
index 8c8bf09aeaa..d84c989225a 100644
--- a/mcs/class/System.Data/Test/System.Data.SqlClient/SqlClientPermissionAttributeTest.cs
+++ b/mcs/class/System.Data/Test/System.Data.SqlClient/SqlClientPermissionAttributeTest.cs
@@ -78,14 +78,6 @@ namespace MonoTests.System.Data.SqlClient {
Assert.AreEqual (SecurityAction.RequestOptional, a.Action, "Action=RequestOptional");
a.Action = SecurityAction.RequestRefuse;
Assert.AreEqual (SecurityAction.RequestRefuse, a.Action, "Action=RequestRefuse");
-#if NET_2_0
- a.Action = SecurityAction.DemandChoice;
- Assert.AreEqual (SecurityAction.DemandChoice, a.Action, "Action=DemandChoice");
- a.Action = SecurityAction.InheritanceDemandChoice;
- Assert.AreEqual (SecurityAction.InheritanceDemandChoice, a.Action, "Action=InheritanceDemandChoice");
- a.Action = SecurityAction.LinkDemandChoice;
- Assert.AreEqual (SecurityAction.LinkDemandChoice, a.Action, "Action=LinkDemandChoice");
-#endif
}
[Test]