10000 TST test last commit · scikit-learn/scikit-learn@d90a8ae · GitHub
[go: up one dir, main page]

Skip to content

Commit d90a8ae

Browse files
committed
TST test last commit
1 parent 414cda9 commit d90a8ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/utils/tests/test_validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def test_check_symmetric():
300300
def test_check_is_fitted():
301301
# Check is ValueError raised when non estimator instance passed
302302
assert_raises(ValueError, check_is_fitted, ARDRegression, "coef_")
303-
assert_raises(ValueError, check_is_fitted, "SVR", "support_")
303+
assert_raises(TypeError, check_is_fitted, "SVR", "support_")
304304

305305
ard = ARDRegression()
306306
svr = SVR()

0 commit comments

Comments
 (0)
0