From b79cd5abd36234ed5baac554a22ae2ae46546ab0 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 31 Oct 2013 15:02:01 -0400 Subject: [PATCH] [Mono.Debugger.Soft] Fixed unit test for getting custom type attributes --- mcs/class/Mono.Debugger.Soft/Test/dtest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/Mono.Debugger.Soft/Test/dtest.cs b/mcs/class/Mono.Debugger.Soft/Test/dtest.cs index f04385add38..32008386979 100644 --- a/mcs/class/Mono.Debugger.Soft/Test/dtest.cs +++ b/mcs/class/Mono.Debugger.Soft/Test/dtest.cs @@ -1102,7 +1102,7 @@ public class DebuggerTests // custom attributes t = frame.Method.GetParameters ()[8].ParameterType; Assert.AreEqual ("Tests2", t.Name); - var attrs = t.GetCustomAttributes (true); + var attrs = t.GetCustomAttributes (false); Assert.AreEqual (3, attrs.Length); foreach (var attr in attrs) { if (attr.Constructor.DeclaringType.Name == "DebuggerDisplayAttribute") { -- 2.25.1