Skip to content

Commit cdea7d6

Browse files
style: fix ruff formatting in test file
Co-Authored-By: sophie.cui@airbyte.io <sophie.cui@airbyte.io>
1 parent 93df886 commit cdea7d6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

unit_tests/utils/test_traced_exception.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,8 @@ def test_from_exception_wrapping_regular_exception_unchanged(self) -> None:
331331
def test_from_exception_wrapping_regular_exception_with_message(self) -> None:
332332
"""Wrapping a regular exception with explicit message kwarg still works."""
333333
original = RuntimeError("runtime failure")
334-
wrapped = AirbyteTracedException.from_exception(original, message="A runtime error occurred.")
334+
wrapped = AirbyteTracedException.from_exception(
335+
original, message="A runtime error occurred."
336+
)
335337
assert wrapped.internal_message == "runtime failure"
336338
assert wrapped.message == "A runtime error occurred."

0 commit comments

Comments
 (0)