From 882db3657dcaf90b71a5f82639621c84a3e4f190 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 2 Feb 2023 07:30:16 +0100 Subject: [PATCH] [tests] Remove workaround for issue #14802. (#17421) Seems like this is fixed now. --- tests/introspection/ApiSelectorTest.cs | 38 -------------------------- 1 file changed, 38 deletions(-) diff --git a/tests/introspection/ApiSelectorTest.cs b/tests/introspection/ApiSelectorTest.cs index a7eea785d08c..1af834e4a3e7 100644 --- a/tests/introspection/ApiSelectorTest.cs +++ b/tests/introspection/ApiSelectorTest.cs @@ -947,44 +947,6 @@ protected virtual bool Skip (Type type, string selectorName) return true; } break; -#if NET - // Incorrect attributes in inlined protocol selectors - https://github.com/xamarin/xamarin-macios/issues/14802 - case "NSTextAttachment": - switch (selectorName) { - case "attachmentBoundsForAttributes:location:textContainer:proposedLineFragment:position:": - case "imageForBounds:attributes:location:textContainer:": - case "viewProviderForParentView:location:textContainer:": - return true; - } - break; - // Incorrect attributes in get/set selectors - https://github.com/xamarin/xamarin-macios/issues/14802 - case "CBManager": - switch (selectorName) { - case "authorization": - case "authorizations": - return true; - } - break; - case "NEAppProxyFlow": - switch (selectorName) { - case "networkInterface": - case "setNetworkInterface:": - return true; - } - break; - case "WKPreferences": - switch (selectorName) { - case "setTextInteractionEnabled:": - return true; - } - break; - case "MidiCISession": - switch (selectorName) { - case "midiDestination": - return true; - } - break; -#endif } // old binding mistake