Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[ios] Initialize MGLMapView with a minimum non-zero size
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoabinader committed Apr 4, 2017
1 parent d2fb7ea commit 6ab94e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/ios/test/MGLAnnotationViewTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ @implementation MGLAnnotationViewTests
- (void)setUp
{
[super setUp];
_mapView = [[MGLMapView alloc] initWithFrame:CGRectZero];
_mapView = [[MGLMapView alloc] initWithFrame:CGRectMake(0, 0, 64, 64)];
_mapView.delegate = self;
}

Expand Down

0 comments on commit 6ab94e9

Please sign in to comment.