Skip to content

Commit

Permalink
subdtype
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgsavage committed Aug 29, 2024
1 parent 0540dbe commit edb8567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pint_pandas/testsuite/test_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_force_ndarray_like(self):

result = pd.concat([a, b], axis=1)
expected = pd.DataFrame(
{0: PintArray(q_a_), 1: PintArray(q_b)}, dtype="pint[degC][Int32]"
{0: PintArray(q_a_), 1: PintArray(q_b)}, dtype="pint[degC][Int64]"
)
tm.assert_equal(result, expected)

Expand All @@ -64,7 +64,7 @@ def test_offset_concat(self):

result = pd.concat([a, b], axis=1)
expected = pd.DataFrame(
{0: PintArray(q_a_), 1: PintArray(q_b)}, dtype="pint[degC][Int32]"
{0: PintArray(q_a_), 1: PintArray(q_b)}, dtype="pint[degC][Int64]"
)
tm.assert_equal(result, expected)

Expand Down

0 comments on commit edb8567

Please sign in to comment.