diff --git a/frontend-js/src/test/js/google-map-mock.js b/frontend-js/src/test/js/google-map-mock.js
index a0cfd11cf3083d66a26013b44cf07d11758cee82..8c06db3b2a6321c5112f3855290181d49f8c2166 100644
--- a/frontend-js/src/test/js/google-map-mock.js
+++ b/frontend-js/src/test/js/google-map-mock.js
@@ -114,8 +114,7 @@ var google = {
       }
       data.div = div;
       if (data.bounds === undefined) {
-        data.bounds = new google.maps.LatLngBounds(new google.maps.LatLng(10,
-            10), new google.maps.LatLng(12, 12));
+        data.bounds = new google.maps.LatLngBounds(new google.maps.LatLng(10, 10), new google.maps.LatLng(12, 12));
       }
 
       return {
@@ -233,4 +232,7 @@ var google = {
   }
 };
 
+google.maps.Map.prototype.fitBounds = function() {
+};
+
 module.exports = google;