Skip to content

fix: change return type of Series.loc[scalar] #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Oct 4, 2023
Prev Previous commit
Next Next commit
remove unneeded iloc in series getitem test
  • Loading branch information
Henry J Solberg committed Sep 22, 2023
commit f0e178f386b2a156396afcdf88a5b0406210ca90
2 changes: 1 addition & 1 deletion tests/system/small/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def test_series___getitem___with_default_index(scalars_dfs):
scalars_df, scalars_pandas_df = scalars_dfs
bf_result = scalars_df[col_name][key]
pd_result = scalars_pandas_df[col_name][key]
assert bf_result.to_pandas().iloc[0] == pd_result
assert bf_result == pd_result


@pytest.mark.parametrize(
Expand Down