Skip to content

Commit

Permalink
fixes to web controller and test file
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisReyes98 committed Jan 22, 2024
1 parent 9a8e182 commit ff0a450
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions packages/google_maps_flutter/google_maps_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ dependency_overrides:
path: ../../google_maps_flutter/google_maps_flutter_ios
google_maps_flutter_platform_interface:
path: ../../google_maps_flutter/google_maps_flutter_platform_interface
google_maps_flutter_web:
path: ../../google_maps_flutter/google_maps_flutter_web
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ void main() {
await plugin.updateHeatmaps(expectedUpdates, mapId: mapId);

verify(controller.updateHeatmaps(expectedUpdates));
)};
});
// Tile Overlays
testWidgets('updateTileOverlays', (WidgetTester tester) async {
final Set<TileOverlay> expectedOverlays = <TileOverlay>{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class GoogleMapController {

_markersController!.addMarkers(_markers);
_circlesController!.addCircles(_circles);
_heatmapsController!.addHeatmaps(heatmaps);
_heatmapsController!.addHeatmaps(_heatmaps);
_polygonsController!.addPolygons(_polygons);
_polylinesController!.addPolylines(_polylines);
_tileOverlaysController!.addTileOverlays(_tileOverlays);
Expand Down

0 comments on commit ff0a450

Please sign in to comment.