We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c39293a commit 9dff0f4Copy full SHA for 9dff0f4
tests/unit/test_series_polars.py
@@ -2020,8 +2020,9 @@ def test_series_small_repr(scalars_dfs):
2020
bf_series = scalars_df[col_name]
2021
pd_series = scalars_pandas_df[col_name]
2022
with bigframes.pandas.option_context("display.repr_mode", "head"):
2023
- pd_string = pd_series.to_string(length=True, dtype=True, name=True)
2024
- assert repr(bf_series) == f"{pd_string}\n\n[{len(pd_series)} rows]"
+ assert repr(bf_series) == pd_series.to_string(
+ length=False, dtype=True, name=True
2025
+ )
2026
2027
2028
def test_sum(scalars_dfs):
0 commit comments