Skip to content

Commit

Permalink
update typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienlanglois committed Jan 16, 2024
1 parent 7e88b44 commit 4084d57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_gis.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_land_classification(
df = xh.gis.land_use_classification(
self.gdf, unique_id=unique_id, year=year
)
if unique_id == None:
if unique_id is None:
df_expected = df_expected.reset_index(drop=True)

pd.testing.assert_frame_equal(df, df_expected)
Expand All @@ -192,7 +192,7 @@ def test_land_classification_xarray(
elif year == "2018":
df_expected = land_classification_data_2018

if unique_id == None:
if unique_id is None:
df_expected = df_expected.reset_index(drop=True)

ds_expected = df_expected.to_xarray()
Expand Down

0 comments on commit 4084d57

Please sign in to comment.