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

Commit 532db60

Browse files
committed
fix
1 parent 91cecfd commit 532db60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/small/ml/test_preprocessing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def test_standard_scaler_normalizes(penguins_df_default_index, new_penguins_df):
6363
pd.testing.assert_frame_equal(result, expected, rtol=0.1)
6464

6565

66-
def test_standard_scaler_normalizeds_fit_transform(new_penguins_df):
66+
def test_standard_scaler_normalizes_fit_transform(new_penguins_df):
6767
# TODO(http://b/292431644): add a second test that compares output to sklearn.preprocessing.StandardScaler, when BQML's change is in prod.
6868
scaler = preprocessing.StandardScaler()
6969
result = scaler.fit_transform(
@@ -115,7 +115,7 @@ def test_standard_scaler_series_normalizes(penguins_df_default_index, new_pengui
115115
pd.testing.assert_frame_equal(result, expected, rtol=0.1)
116116

117117

118-
def test_standard_scaler_normalizeds_non_standard_column_names(
118+
def test_standard_scaler_normalizes_non_standard_column_names(
119119
new_penguins_df: bpd.DataFrame,
120120
):
121121
new_penguins_df = new_penguins_df.rename(

0 commit comments

Comments
 (0)