Skip to content

Commit

Permalink
FIX: Test with hard-coded values uses check_less_precise
Browse files Browse the repository at this point in the history
Hoping this will fix the failing win64 build at conda-forge
  • Loading branch information
DahnJ committed Jun 25, 2021
1 parent 24d8936 commit e1bdbd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h3pandas/test_h3pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def test_h3_to_geo(indexed_dataframe):
geometry = gpd.points_from_xy(x=lngs, y=lats, crs="epsg:4326")
expected = gpd.GeoDataFrame(indexed_dataframe, geometry=geometry)
result = indexed_dataframe.h3.h3_to_geo()
assert_geodataframe_equal(expected, result)
assert_geodataframe_equal(expected, result, check_less_precise=True)


def test_h3_to_geo_boundary(indexed_dataframe):
Expand Down

0 comments on commit e1bdbd2

Please sign in to comment.