Skip to content

Commit

Permalink
Fix test by making stops unique
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbendebiene committed Aug 16, 2023
1 parent 3b5965a commit cc2ab49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/osm_upload_api_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void main() async {
name: 'Stop1'
),
Stop(
location: LatLng(10.00001, 20.00001),
location: LatLng(10.00002, 20.00002),
name: 'Stop2'
)
], LatLng(10.00001, 20.00001), 200);
Expand All @@ -48,11 +48,11 @@ void main() async {
name: 'Stop1'
),
Stop(
location: LatLng(10.00001, 20.00001),
location: LatLng(10.00002, 20.00002),
name: 'Stop2'
),
Stop(
location: LatLng(10.00001, 20.00001),
location: LatLng(10.00003, 20.00003),
name: 'Stop2'
)
], LatLng(10.00001, 20.00001), 200);
Expand Down

0 comments on commit cc2ab49

Please sign in to comment.