From bf8f0745a663c580096b6b405d004260c1ed3b5c Mon Sep 17 00:00:00 2001 From: Emux Date: Mon, 21 Nov 2016 12:59:07 +0200 Subject: [PATCH] Fix Travis build --- vtm-tests/test/org/oscim/layers/MapEventLayerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vtm-tests/test/org/oscim/layers/MapEventLayerTest.java b/vtm-tests/test/org/oscim/layers/MapEventLayerTest.java index 04b805c2..19015758 100644 --- a/vtm-tests/test/org/oscim/layers/MapEventLayerTest.java +++ b/vtm-tests/test/org/oscim/layers/MapEventLayerTest.java @@ -43,14 +43,14 @@ public class MapEventLayerTest { @Test public void doubleTap_shouldAnimateZoom() throws Exception { simulateDoubleTap(); - verify(mockAnimator, never()).animateZoom(300, 2, 1.0f, -2.0f); + verify(mockAnimator).animateZoom(300, 2, 1.0f, -2.0f); } @Test public void doubleTap_shouldAnimateZoomAfterDoubleTouchDrag() throws Exception { simulateDoubleTouchDragUp(); simulateDoubleTap(); - verify(mockAnimator, never()).animateZoom(300, 2, 1.0f, -2.0f); + verify(mockAnimator).animateZoom(300, 2, 1.0f, -2.0f); } @Test