summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platform/darwin/test/MGLTileSetTests.mm15
1 files changed, 5 insertions, 10 deletions
diff --git a/platform/darwin/test/MGLTileSetTests.mm b/platform/darwin/test/MGLTileSetTests.mm
index 848a42bf33..9a09a2bd09 100644
--- a/platform/darwin/test/MGLTileSetTests.mm
+++ b/platform/darwin/test/MGLTileSetTests.mm
@@ -69,16 +69,11 @@
#if TARGET_OS_IPHONE
UIColor *redColor = [UIColor redColor];
#else
- NSColor *redColor;
- if ([NSColor redColor].colorSpaceName == NSCalibratedRGBColorSpace) {
- // CSS uses the sRGB color space.
- redColor = [NSColor colorWithSRGBRed:1 green:0 blue:0 alpha:1];
- } else {
- // AppKit incorrectly uses calibrated RGB when exporting HTML, so input
- // calibrated RGB to ensure round-tripping.
- // <rdar://problem/46115233> <http://www.openradar.me/46115233>
- redColor = [NSColor colorWithCalibratedRed:1 green:0 blue:0 alpha:1];
- }
+ // CSS uses the sRGB color space.
+ // AppKit incorrectly uses calibrated RGB when exporting HTML, so input
+ // calibrated RGB to ensure round-tripping.
+ // <rdar://problem/46115233> <http://www.openradar.me/46115233>
+ NSColor *redColor = [NSColor colorWithCalibratedRed:1 green:0 blue:0 alpha:1];
#endif
NSAttributedString *gl = [[NSAttributedString alloc] initWithString:@"GL" attributes:@{
NSBackgroundColorAttributeName: redColor,