Skip to content

Commit 8b141f9

Browse files
committed
Missed a line in create_test_series_in_defined_mode where we want to get the default Backend instead of "Ray"
1 parent 6e861d0 commit 8b141f9

File tree

1 file changed

+1
-1
lines changed
  • modin/tests/pandas/native_df_interoperability

1 file changed

+1
-1
lines changed

modin/tests/pandas/native_df_interoperability/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def create_test_series_in_defined_mode(
6262
if not isinstance(native, bool):
6363
raise ValueError("`native` should be True or False.")
6464

65-
hybrid_backend = "Pandas" if native else "Ray"
65+
hybrid_backend = "Pandas" if native else Backend.get()
6666
with switch_to_native_execution() if native else nullcontext():
6767
with config_context(AutoSwitchBackend=False, Backend=hybrid_backend):
6868
modin_ser, pandas_ser = create_test_series(

0 commit comments

Comments
 (0)