Skip to content

Commit 0e24036

Browse files
authored
test: series explode test (#606)
1 parent 290f95d commit 0e24036

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/system/small/test_series.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3463,9 +3463,8 @@ def foo(x: int, y: int, df):
34633463
],
34643464
)
34653465
def test_series_explode(data):
3466-
data = [[1, 2, 3], [], numpy.nan, [3, 4]]
34673466
s = bigframes.pandas.Series(data)
3468-
pd_s = pd.Series(data)
3467+
pd_s = s.to_pandas()
34693468
pd.testing.assert_series_equal(
34703469
s.explode().to_pandas(),
34713470
pd_s.explode(),

0 commit comments

Comments
 (0)