Skip to content

Commit 7b61b90

Browse files
Removed redundant function-level @pytest.mark.xfail calls
1 parent 874024e commit 7b61b90

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

evalml/tests/component_tests/test_components.py

-2
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,6 @@ def test_clone_fitted(X_y_binary):
788788

789789
@pytest.mark.parametrize("component_class", all_components())
790790
def test_components_init_kwargs(component_class):
791-
792791
component = component_class()
793792
if component._component_obj is None:
794793
pytest.xfail()
@@ -1103,7 +1102,6 @@ def test_all_transformers_needs_fitting(component_class):
11031102
@pytest.mark.parametrize("component_class", _all_transformers())
11041103
def test_all_transformers_check_fit(component_class, X_y_binary, ts_data_binary):
11051104
X, y = X_y_binary
1106-
11071105
if not component_class.needs_fitting:
11081106
pytest.xfail()
11091107

0 commit comments

Comments
 (0)