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:38:23 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-09-22 17:38:23 +0400
commit5c7e1c6bd3e68eaa47c5050a0271926e6120bbf9 (patch)
tree02f1e492812e7209f552ce865b4c3505f5627628 /mcs/class/System.Data/Test
parentd79aa4a7255a492343070f502a9fc6dfdb1afe04 (diff)
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionAttributeTest.cs: Removed *Choice security actions. svn path=/trunk/mcs/; revision=50482
Diffstat (limited to 'mcs/class/System.Data/Test')
-rw-r--r--mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog4
-rw-r--r--mcs/class/System.Data/Test/System.Data.Odbc/OdbcPermissionAttributeTest.cs8
2 files changed, 4 insertions, 8 deletions
diff --git a/mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog b/mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog
index 57c7f8f668f..c5c85a3c5a9 100644
--- a/mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog
+++ b/mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
+
+ * OdbcPermissionAttributeTest.cs: Removed *Choice security actions.
+
2005-09-01 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataAdapterTest.cs: moved to ProviderTests and integrated
diff --git a/mcs/class/System.Data/Test/System.Data.Odbc/OdbcPermissionAttributeTest.cs b/mcs/class/System.Data/Test/System.Data.Odbc/OdbcPermissionAttributeTest.cs
index 082c0ea48b4..dbe99792ec7 100644
--- a/mcs/class/System.Data/Test/System.Data.Odbc/OdbcPermissionAttributeTest.cs
+++ b/mcs/class/System.Data/Test/System.Data.Odbc/OdbcPermissionAttributeTest.cs
@@ -78,14 +78,6 @@ namespace MonoTests.System.Data.Odbc {
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]