Skip to content

Commit a566e68

Browse files
fixup
1 parent c444bfa commit a566e68

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/io/test_feather.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,10 @@ def test_string_inference_string_view_type(self, tmp_path):
263263

264264
with pd.option_context("future.infer_string", True):
265265
result = read_feather(path)
266-
expected = pd.DataFrame(
267-
data={"a": [None, "b", "c"]}, dtype=pd.StringDtype(na_value=np.nan)
268-
)
266+
267+
expected = pd.DataFrame(
268+
data={"a": [None, "b", "c"]}, dtype=pd.StringDtype(na_value=np.nan)
269+
)
269270
tm.assert_frame_equal(result, expected)
270271

271272
def test_out_of_bounds_datetime_to_feather(self):

0 commit comments

Comments
 (0)