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:35:55 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-09-22 17:35:55 +0400
commitf851e27286af0efc956690dfca5e76333ef18d6f (patch)
treeda9d57427594dad317f402eed176aa4e8fa089b0 /mcs/class/System.Data/Test
parent4af363f381635bfb8782b6474c80edd3498ef78f (diff)
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* OleDbPermissionAttributeTest.cs: Removed *Choice security actions. svn path=/trunk/mcs/; revision=50479
Diffstat (limited to 'mcs/class/System.Data/Test')
-rw-r--r--mcs/class/System.Data/Test/System.Data.OleDb/ChangeLog4
-rw-r--r--mcs/class/System.Data/Test/System.Data.OleDb/OleDbPermissionAttributeTest.cs8
2 files changed, 4 insertions, 8 deletions
diff --git a/mcs/class/System.Data/Test/System.Data.OleDb/ChangeLog b/mcs/class/System.Data/Test/System.Data.OleDb/ChangeLog
index 045028e23f3..a0092114b47 100644
--- a/mcs/class/System.Data/Test/System.Data.OleDb/ChangeLog
+++ b/mcs/class/System.Data/Test/System.Data.OleDb/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
+
+ * OleDbPermissionAttributeTest.cs: Removed *Choice security actions.
+
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* OleDbPermissionTest.cs, OleDbPermissionAttributeTest.cs:
diff --git a/mcs/class/System.Data/Test/System.Data.OleDb/OleDbPermissionAttributeTest.cs b/mcs/class/System.Data/Test/System.Data.OleDb/OleDbPermissionAttributeTest.cs
index f645b6212cf..a44f0dfd784 100644
--- a/mcs/class/System.Data/Test/System.Data.OleDb/OleDbPermissionAttributeTest.cs
+++ b/mcs/class/System.Data/Test/System.Data.OleDb/OleDbPermissionAttributeTest.cs
@@ -79,14 +79,6 @@ namespace MonoTests.System.Data.OleDb {
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]