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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2019-06-29 01:00:14 +0300
committerGitHub <noreply@github.com>2019-06-29 01:00:14 +0300
commit5ae881d4f6896eebac538001d7bbe1202b511779 (patch)
tree49a4a0aada92b009070f4069b3452f8a70f77086 /Test/Mono.Cecil.Tests
parent6e7bcbe3119353dc28f376743c228d2c255f47d5 (diff)
Don't verify attributes on generic constraints on Mono
Diffstat (limited to 'Test/Mono.Cecil.Tests')
-rw-r--r--Test/Mono.Cecil.Tests/CustomAttributesTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/Mono.Cecil.Tests/CustomAttributesTests.cs b/Test/Mono.Cecil.Tests/CustomAttributesTests.cs
index 47bafc8..0c8524a 100644
--- a/Test/Mono.Cecil.Tests/CustomAttributesTests.cs
+++ b/Test/Mono.Cecil.Tests/CustomAttributesTests.cs
@@ -461,7 +461,7 @@ namespace Mono.Cecil.Tests {
var attributes = constraint.CustomAttributes;
Assert.AreEqual (1, attributes.Count);
Assert.AreEqual ("System.Runtime.CompilerServices.NullableAttribute", attributes [0].AttributeType.FullName);
- });
+ }, verify: !Platform.OnMono);
}
[Test]