aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2018-09-25 23:09:54 -0400
committerJulian Rex <julian.rex@mapbox.com>2018-10-06 00:58:40 -0400
commit53afaae4976b17b7fde57b6811147b0d7e568e79 (patch)
treef1c731a4daae5aeb51beb0635d11d9199e27f5f5
parentd653a1faeced6d9e5be6232ff45cb5cf34ef7b62 (diff)
Fixed swift integration.
-rw-r--r--platform/ios/test/MGLMapViewDelegateIntegrationTests.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift b/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift
index 9f7b05407..5310955ef 100644
--- a/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift
+++ b/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift
@@ -33,9 +33,9 @@ extension MGLMapViewDelegateIntegrationTests: MGLMapViewDelegate {
func mapView(_ mapView: MGLMapView, didFinishLoading style: MGLStyle) {}
- func mapView(_ mapView: MGLMapView, shouldMoveOnscreenWhenSelecting annotation: MGLAnnotation) -> Bool {}
+ func mapView(_ mapView: MGLMapView, shouldMoveOnscreenWhenSelecting annotation: MGLAnnotation) -> Bool { return true }
- func mapView(_ mapView: MGLMapView, shouldAnimateAnnotationSelection annotation: MGLAnnotation) -> Bool {}
+ func mapView(_ mapView: MGLMapView, shouldAnimateAnnotationSelection annotation: MGLAnnotation) -> Bool { return true }
func mapView(_ mapView: MGLMapView, didSelect annotation: MGLAnnotation) {}