Skip to content

Commit 878d264

Browse files
committed
removed plural of plural nomenclature idiosyncracies
1 parent c32550d commit 878d264

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sklearn/linear_model/tests/test_ridge.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -537,16 +537,16 @@ def test_ridge_sample_weights_in_feature_space():
537537

538538
rng = np.random.RandomState(42)
539539

540-
n_sampless = [5, 6, 7] * 2
541-
n_featuress = [7, 6, 5] * 2
542-
n_targetss = [1, 1, 1, 2, 2, 2]
540+
n_samples_list = [5, 6, 7] * 2
541+
n_features_list = [7, 6, 5] * 2
542+
n_targets_list = [1, 1, 1, 2, 2, 2]
543543
noise = 1.
544544
alpha = 2.
545545
alpha = np.atleast_1d(alpha)
546546

547-
for n_samples, n_features, n_targets in zip(n_sampless,
548-
n_featuress,
549-
n_targetss):
547+
for n_samples, n_features, n_targets in zip(n_samples_list,
548+
n_features_list,
549+
n_targets_list):
550550
X = rng.randn(n_samples, n_features)
551551
beta = rng.randn(n_features, n_targets)
552552
Y = X.dot(beta)

0 commit comments

Comments
 (0)