We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349aa05 commit 600f46fCopy full SHA for 600f46f
tests/dotnet/UnitTests/XcodeVersionTest.cs
@@ -13,8 +13,10 @@ public static object [] GetTestCases ()
13
var rv = new List<object []> ();
14
foreach (var platform in platforms) {
15
foreach (var xcode in xcodes) {
16
- if (xcode.Version == Configuration.XcodeVersion)
17
- continue; // don't care about current Xcode version, that's tested everywhere else.
+ var a = xcode.Version;
+ var b = Configuration.XcodeVersion;
18
+ if (a.Major == b.Major && a.Minor == b.Minor)
19
+ continue; // don't care about current Xcode version (compared using Major.Minor only), that's tested everywhere else.
20
rv.Add (new object [] { platform, xcode.Path, xcode.Version });
21
}
22
0 commit comments