summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ios/MGLTViewController.h1
-rw-r--r--test/ios/MGLTViewController.m5
-rw-r--r--test/ios/MapViewTests.m1
3 files changed, 7 insertions, 0 deletions
diff --git a/test/ios/MGLTViewController.h b/test/ios/MGLTViewController.h
index f8d5618993..0be0e1ff2c 100644
--- a/test/ios/MGLTViewController.h
+++ b/test/ios/MGLTViewController.h
@@ -3,5 +3,6 @@
@interface MGLTViewController : UIViewController
- (void)insetMapView;
+- (void)resetMapView;
@end
diff --git a/test/ios/MGLTViewController.m b/test/ios/MGLTViewController.m
index 2cb2b939c7..e8b500b430 100644
--- a/test/ios/MGLTViewController.m
+++ b/test/ios/MGLTViewController.m
@@ -23,4 +23,9 @@
_mapView.frame = CGRectInset(_mapView.frame, 50, 50);
}
+- (void)resetMapView
+{
+ _mapView.frame = self.view.bounds;
+}
+
@end
diff --git a/test/ios/MapViewTests.m b/test/ios/MapViewTests.m
index 2d87b43c15..fff52adc0e 100644
--- a/test/ios/MapViewTests.m
+++ b/test/ios/MapViewTests.m
@@ -14,6 +14,7 @@
- (void)beforeEach {
[system simulateDeviceRotationToOrientation:UIDeviceOrientationPortrait];
+ [tester.viewController resetMapView];
tester.mapView.centerCoordinate = CLLocationCoordinate2DMake(38.913175, -77.032458);
tester.mapView.zoomLevel = 14;