From e1bdbd25821bfaf06757d96243f5083577e736b8 Mon Sep 17 00:00:00 2001 From: dahn Date: Fri, 25 Jun 2021 23:42:29 +0200 Subject: [PATCH] FIX: Test with hard-coded values uses check_less_precise Hoping this will fix the failing win64 build at conda-forge --- h3pandas/test_h3pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h3pandas/test_h3pandas.py b/h3pandas/test_h3pandas.py index aaf8f3c..e2a58db 100644 --- a/h3pandas/test_h3pandas.py +++ b/h3pandas/test_h3pandas.py @@ -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):