Skip to content

Commit 24b158d

Browse files
committed
pre-commit done
1 parent ec39d9e commit 24b158d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/parser/test_na_values.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,6 +813,7 @@ def test_bool_and_nan_to_float(all_parsers):
813813
expected = DataFrame.from_dict({"0": [np.nan, 1.0, 0.0]})
814814
tm.assert_frame_equal(result, expected)
815815

816+
816817
@xfail_pyarrow
817818
def test_na_values_dict_without_dtype(all_parsers):
818819
# GH#59303
@@ -830,4 +831,4 @@ def test_na_values_dict_without_dtype(all_parsers):
830831
# this would PASS even BEFORE this fix
831832
result_2 = parser.read_csv(StringIO(data), na_values={"A": [-99, -99.0]})
832833
expected_2 = DataFrame.from_dict({"A": [np.nan, np.nan, np.nan, np.nan]})
833-
tm.assert_frame_equal(result_2, expected_2)
834+
tm.assert_frame_equal(result_2, expected_2)

0 commit comments

Comments
 (0)