diff --git a/crates/ruff_python_formatter/tests/snapshots/format@call_chains.py.snap b/crates/ruff_python_formatter/tests/snapshots/format@call_chains.py.snap index b33054444d038..19f3407776336 100644 --- a/crates/ruff_python_formatter/tests/snapshots/format@call_chains.py.snap +++ b/crates/ruff_python_formatter/tests/snapshots/format@call_chains.py.snap @@ -270,9 +270,11 @@ g1 = ( queryset.distinct().order_by(field.name).values_list(field_name_flat_long_long=True) ) -# TODO(konstin): We currently can't do call chains that is not the outermost expression +# Fluent style that is not the outermost expression if ( - not a().b().cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc() + not a() + .b() + .cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc() ): pass ```