Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 1e5f52a

Browse files
committed
test: pass the session in
1 parent f02f304 commit 1e5f52a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/small/test_series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4099,8 +4099,8 @@ def test_json_astype_others_raise_error(data, to_type):
40994099
pytest.param(["true", None], dtypes.STRING_DTYPE, id="to_string"),
41004100
],
41014101
)
4102-
def test_json_astype_others_in_safe_mode(data, to_type):
4103-
bf_series = series.Series(data, dtype=dtypes.JSON_DTYPE)
4102+
def test_json_astype_others_in_safe_mode(data, to_type, session):
4103+
bf_series = series.Series(data, dtype=dtypes.JSON_DTYPE, session=session)
41044104
bf_result = bf_series.astype(to_type, errors="null")
41054105
assert bf_result.dtype == to_type
41064106

0 commit comments

Comments
 (0)