Skip to content

Commit

Permalink
Fix intro test wrt fields
Browse files Browse the repository at this point in the history
  • Loading branch information
spouliot committed Jun 14, 2021
1 parent 93fe589 commit ad31bc3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/introspection/iOS/iOSApiFieldTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ protected override bool Skip (PropertyInfo p)
case "IOSurface":
// Available in the simulator starting with iOS 11
return Runtime.Arch == Arch.SIMULATOR && !TestRuntime.CheckXcodeVersion (9, 0);

case "iAd":
// largely removed in xcode 13, including ADClient.ErrorDomain
if (TestRuntime.CheckXcodeVersion (13, 0))
return true;
break;
}

switch (p.Name) {
Expand Down

0 comments on commit ad31bc3

Please sign in to comment.