MCPcopy
hub / github.com/pandas-dev/pandas / test_join_series_deprecated

Function test_join_series_deprecated

pandas/tests/indexes/test_common.py:529–536  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

527
528
529def test_join_series_deprecated():
530 # GH#62897
531 idx = pd.Index([1, 2])
532 ser = pd.Series([1, 2, 2])
533 with tm.assert_produces_warning(
534 Pandas4Warning, match="Passing .* to .* is deprecated"
535 ):
536 idx.join(ser)

Callers

nothing calls this directly

Calls 1

joinMethod · 0.95

Tested by

no test coverage detected