Skip to content

Commit

Permalink
Revert to enabling platform overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
aaliddell committed Jan 5, 2021
1 parent a19d933 commit 2b5ff11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_s2cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def test_cell_id_to_lat_lon_compat():
expected_tuple = (float(row['lat']), float(row['lon']))

# MacOS and Windows has slightly different rounding performance
if sys.platform in ('darwin', 'win32') and False:
if sys.platform in ('darwin', 'win32'):
assert ll_tuple == pytest.approx(expected_tuple, abs=1e-12, rel=0.0)
else:
assert ll_tuple == expected_tuple
Expand All @@ -151,7 +151,7 @@ def test_token_to_lat_lon_compat():
expected_tuple = (float(row['lat']), float(row['lon']))

# MacOS and Windows has slightly different rounding performance
if sys.platform in ('darwin', 'win32') and False:
if sys.platform in ('darwin', 'win32'):
assert ll_tuple == pytest.approx(expected_tuple, abs=1e-12, rel=0.0)
else:
assert ll_tuple == expected_tuple
Expand Down

0 comments on commit 2b5ff11

Please sign in to comment.