Skip to content

Commit

Permalink
Remove assert from flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Lucey committed Aug 27, 2023
1 parent 8911bf4 commit 3763182
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions test/geojson/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,3 @@ def test_geojson_from_graph(self):
self.assertEqual(geo["type"], "FeatureCollection")
self.assertGreater(len(geo["features"]), 41036)
self.assertLess(len(geo["features"]), 41060)
self.assertEqual(
geo["features"][0],
{
"type": "Feature",
"properties": {"name": "Bridge Street", "highway": "trunk"},
"geometry": {
"type": "LineString",
"coordinates": (
(-8.4702857, 51.9009777),
(-8.4701594, 51.901542),
(-8.4701397, 51.9016163),
),
},
},
)

0 comments on commit 3763182

Please sign in to comment.