Skip to content

Commit

Permalink
get tests working
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgsavage committed Aug 4, 2024
1 parent 06f64d3 commit c605913
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pint_pandas/testsuite/test_pandas_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ def test_dequantify(self):
)
expected = pd.DataFrame(
{
("no_unit_column", "No Unit"): pd.Series({0: 0.0, 1: 1.0, 2: 2.0, 3: 3.0}, dtype="Float64"),
("no_unit_column", "No Unit"): pd.Series(
{0: 0.0, 1: 1.0, 2: 2.0, 3: 3.0}, dtype="Float64"
),
("pintarray_column", "foot * force_pound"): pd.Series(
{
0: 1.0,
Expand All @@ -127,7 +129,8 @@ def test_quantify(self):
2: 2.0,
3: 3.0,
},
}, dtype="Float64"
},
dtype="Float64",
)
df.columns.names = [None, "unit"]
expected = pd.DataFrame(
Expand Down

0 comments on commit c605913

Please sign in to comment.