diff --git a/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield.py b/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield.py index 8700b7ac06d3e..e0f3c2e806d37 100644 --- a/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield.py +++ b/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield.py @@ -22,8 +22,6 @@ def foo(): pass - (yield a, b) = (1, 2) - # some comment for e in l : yield e # some comment diff --git a/crates/ruff_python_formatter/tests/snapshots/format@expression__yield.py.snap b/crates/ruff_python_formatter/tests/snapshots/format@expression__yield.py.snap index e6f39afa29e2d..463ed0d1eccef 100644 --- a/crates/ruff_python_formatter/tests/snapshots/format@expression__yield.py.snap +++ b/crates/ruff_python_formatter/tests/snapshots/format@expression__yield.py.snap @@ -28,8 +28,6 @@ def foo(): pass - (yield a, b) = (1, 2) - # some comment for e in l : yield e # some comment @@ -151,8 +149,6 @@ def foo(): # comment pass - (yield a, b) = (1, 2) - # some comment for e in l: yield e # some comment