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

Commit 765b678

Browse files
committed
restore a test
1 parent 922bbf4 commit 765b678

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/test_series_polars.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,9 @@ def test_series_construct_w_dtype_for_array_struct():
376376
)
377377

378378

379-
def test_series_construct_local_unordered_has_sequential_index(unordered_session):
379+
def test_series_construct_local_unordered_has_sequential_index(session):
380380
series = bigframes.pandas.Series(
381-
["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"], session=unordered_session
381+
["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"], session=session
382382
)
383383
expected: pd.Index = pd.Index([0, 1, 2, 3, 4, 5, 6], dtype=pd.Int64Dtype())
384384
pd.testing.assert_index_equal(series.index.to_pandas(), expected)

0 commit comments

Comments
 (0)