You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Examples/UIExplorer/UIExplorerIntegrationTests/IntegrationTests.m
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ - (void)setUp
29
29
RCTAssert(NO, @"Tests should be run on 32-bit device simulators (e.g. iPhone 5)");
30
30
#endif
31
31
32
-
NSOperatingSystemVersion version = [[NSProcessInfoprocessInfo]operatingSystemVersion];
32
+
NSOperatingSystemVersion version = [NSProcessInfoprocessInfo].operatingSystemVersion;
33
33
RCTAssert(version.majorVersion == 8 || version.minorVersion >= 3, @"Tests should be run on iOS 8.3+, found %zd.%zd.%zd", version.majorVersion, version.minorVersion, version.patchVersion);
Copy file name to clipboardExpand all lines: Examples/UIExplorer/UIExplorerIntegrationTests/UIExplorerSnapshotTests.m
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ - (void)setUp
36
36
RCTAssert(NO, @"Tests should be run on 32-bit device simulators (e.g. iPhone 5)");
37
37
#endif
38
38
39
-
NSOperatingSystemVersion version = [[NSProcessInfoprocessInfo]operatingSystemVersion];
39
+
NSOperatingSystemVersion version = [NSProcessInfoprocessInfo].operatingSystemVersion;
40
40
RCTAssert(version.majorVersion == 8 || version.minorVersion >= 3, @"Snapshot tests should be run on iOS 8.3+, found %zd.%zd.%zd", version.majorVersion, version.minorVersion, version.patchVersion);
0 commit comments