We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93df886 commit cdea7d6Copy full SHA for cdea7d6
1 file changed
unit_tests/utils/test_traced_exception.py
@@ -331,6 +331,8 @@ def test_from_exception_wrapping_regular_exception_unchanged(self) -> None:
331
def test_from_exception_wrapping_regular_exception_with_message(self) -> None:
332
"""Wrapping a regular exception with explicit message kwarg still works."""
333
original = RuntimeError("runtime failure")
334
- wrapped = AirbyteTracedException.from_exception(original, message="A runtime error occurred.")
+ wrapped = AirbyteTracedException.from_exception(
335
+ original, message="A runtime error occurred."
336
+ )
337
assert wrapped.internal_message == "runtime failure"
338
assert wrapped.message == "A runtime error occurred."
0 commit comments