Skip to content

Commit

Permalink
chore: more specific dtypes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed May 7, 2024
1 parent 18fcac1 commit 1c587fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ def test_sample_grids_on_nodes():
"y": [200, 300, 400],
name: [40000, 100000, 200000],
},
dtype="int",
dtype="int64",
)
pdt.assert_frame_equal(result_df, expected)

Expand Down Expand Up @@ -454,7 +454,7 @@ def test_sample_grids_custom_coordinate_names():
)
expected = pd.DataFrame(
{"lon": [0, 100, 200], "lat": [200, 300, 400], name: [40000, 100000, 200000]},
dtype="int",
dtype="int64",
)
pdt.assert_frame_equal(result_df, expected)

Expand Down

0 comments on commit 1c587fd

Please sign in to comment.