Skip to content

Commit

Permalink
Fix test error caused by breaking change in EE API
Browse files Browse the repository at this point in the history
It looks like the string repr for `ee.Projection` changed to
`ee.projection.Projection`, so my check for the fallback repr
started failing. Just updated that to match the new repr.
  • Loading branch information
aazuspan committed Mar 13, 2024
1 parent 0ff0c9b commit b12e32d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_reprs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def test_error():
"""
with pytest.warns(UserWarning):
rep = ee.Projection("not a real epsg")._repr_html_()
assert "ee.Projection object" in rep
assert "Projection object" in rep

0 comments on commit b12e32d

Please sign in to comment.