Skip to content

Commit

Permalink
32-bit stuff III
Browse files Browse the repository at this point in the history
  • Loading branch information
Terji Petersen authored and Terji Petersen committed Dec 1, 2022
1 parent bcd9d6b commit 9a64c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/frame/methods/test_value_counts.py
Expand Up @@ -88,7 +88,7 @@ def test_data_frame_value_counts_empty():
df_no_cols = pd.DataFrame()

result = df_no_cols.value_counts()
expected = pd.Series([], dtype=np.int64, index=np.array([], dtype=np.int_))
expected = pd.Series([], dtype=np.int64, index=np.array([], dtype=np.intc))

tm.assert_series_equal(result, expected)

Expand All @@ -97,7 +97,7 @@ def test_data_frame_value_counts_empty_normalize():
df_no_cols = pd.DataFrame()

result = df_no_cols.value_counts(normalize=True)
expected = pd.Series([], dtype=np.float64, index=np.array([], dtype=np.int_))
expected = pd.Series([], dtype=np.float64, index=np.array([], dtype=np.intc))

tm.assert_series_equal(result, expected)

Expand Down

0 comments on commit 9a64c7f

Please sign in to comment.