From d51d380f181e9b4f6d24e7411b12db642a4339d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksey=20Kliger=20=28=CE=BBgeek=29?= Date: Thu, 5 Nov 2020 23:19:11 -0500 Subject: [PATCH] [tests] Re-enable tests fixed by #44081 (#44212) Fixes https://github.com/mono/mono/issues/15030 and fixes https://github.com/mono/mono/issues/15031 and fixes https://github.com/mono/mono/issues/15032 --- src/libraries/System.Reflection/tests/TypeInfoTests.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libraries/System.Reflection/tests/TypeInfoTests.cs b/src/libraries/System.Reflection/tests/TypeInfoTests.cs index 61855a55a468cb..4e3603c2f3aa9c 100644 --- a/src/libraries/System.Reflection/tests/TypeInfoTests.cs +++ b/src/libraries/System.Reflection/tests/TypeInfoTests.cs @@ -816,7 +816,6 @@ public void GetProperty() } [Fact] - [ActiveIssue("https://github.com/mono/mono/issues/15029", TestRuntimes.Mono)] public void GetMethod() { MethodInfo[] methods = typeof(MembersClass).GetTypeInfo().GetMethods(); @@ -835,7 +834,6 @@ public void GetMethod_Invalid() } [Theory] - [ActiveIssue("https://github.com/mono/mono/issues/15029", TestRuntimes.Mono)] [InlineData(BindingFlags.Default, 9)] [InlineData(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance, 16)] public void GetMethods(BindingFlags bindingAttributes, int length) @@ -902,7 +900,6 @@ public void GetMember(string name, BindingFlags bindingAttributes, int length) } [Theory] - [ActiveIssue("https://github.com/mono/mono/issues/15029", TestRuntimes.Mono)] [InlineData(BindingFlags.Default, 15)] [InlineData(BindingFlags.NonPublic | BindingFlags.Instance, 13)] [InlineData(BindingFlags.Public | BindingFlags.Instance, 15)]