diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2018-03-30 05:43:56 -0700 |
---|---|---|
committer | Minh Nguyễn <mxn@1ec5.org> | 2018-04-02 10:42:54 -0700 |
commit | a877b6dbe8ff576f82ab9222f418da51591dd423 (patch) | |
tree | a998c9174b643e982e54d31a4bba349a6279632c /platform/ios/test | |
parent | 10440640178429fc8e5c319c86e7a3e89746952e (diff) | |
download | qtlocation-mapboxgl-a877b6dbe8ff576f82ab9222f418da51591dd423.tar.gz |
[ios, macos] Renamed MGLVectorSource to MGLVectorTileSource
Diffstat (limited to 'platform/ios/test')
-rw-r--r-- | platform/ios/test/MGLNSOrthographyAdditionsTests.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/test/MGLNSOrthographyAdditionsTests.m b/platform/ios/test/MGLNSOrthographyAdditionsTests.m index 351fe4227e..f30553e8f6 100644 --- a/platform/ios/test/MGLNSOrthographyAdditionsTests.m +++ b/platform/ios/test/MGLNSOrthographyAdditionsTests.m @@ -1,7 +1,7 @@ #import <XCTest/XCTest.h> #import "NSOrthography+MGLAdditions.h" -#import "MGLVectorSource_Private.h" +#import "MGLVectorTileSource_Private.h" @interface MGLNSOrthographyAdditionsTests : XCTestCase @@ -10,7 +10,7 @@ @implementation MGLNSOrthographyAdditionsTests - (void)testStreetsLanguages { - for (NSString *language in [MGLVectorSource mapboxStreetsLanguages]) { + for (NSString *language in [MGLVectorTileSource mapboxStreetsLanguages]) { NSString *dominantScript = [NSOrthography mgl_dominantScriptForMapboxStreetsLanguage:language]; XCTAssertNotEqualObjects(dominantScript, @"Zyyy", @"Mapbox Streets languages should have dominant script"); } |