Skip to content

Commit

Permalink
Fix Typo in try except statement
Browse files Browse the repository at this point in the history
  • Loading branch information
JanTeichertKluge committed Dec 8, 2023
1 parent 432ccc5 commit 4009c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doubleml/tests/test_dummy_learners.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ def test_clone(dl_fixture):
try:
_ = clone(dl_fixture["dummy_regressor"])
_ = clone(dl_fixture["dummy_classifier"])
except Error as e:
except Exception as e:
pytest.fail(f"clone() raised an exception:\n{str(e)}\n")

0 comments on commit 4009c47

Please sign in to comment.