We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9844860 commit 05c28d0Copy full SHA for 05c28d0
tests/test_greedy_selector.py
@@ -51,10 +51,10 @@ def test_score_threshold_and_full(self):
51
52
def test_bad_score_threshold_type(self):
53
with self.assertRaises(ValueError) as cm:
54
- _ = GreedyTester(score_threshold_type = "bad").fit(self.X)
+ _ = GreedyTester(score_threshold_type="bad").fit(self.X)
55
self.assertEqual(
56
str(cm.exception),
57
- "invalid score_threshold_type, expected one of 'relative' or 'absolute'"
+ "invalid score_threshold_type, expected one of 'relative' or 'absolute'",
58
)
59
60
def test_bad_warm_start(self):
0 commit comments