Skip to content

Commit e54ce21

Browse files
authored
Merge pull request #105333 from bjcmit/patch-1
Fixed missing single quote in line 367
2 parents 9d96eaf + bea28cb commit e54ce21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/tutorial-convert-ml-experiment-to-production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ class TestTrain:
364364
"test": {"X": [[4, 5, 6]], "y": [0]}}
365365
test_alpha = 0.5
366366
mock_ridge_fit = mocker.patch('Ridge.fit')
367-
mock_ridge_predict = mocker.patch(Ridge.predict')
367+
mock_ridge_predict = mocker.patch('Ridge.predict')
368368

369369
# Act
370370
train_model(test_data, test_alpha)

0 commit comments

Comments
 (0)