diff --git a/spec/lib/rufo/formatter_source_specs/method_calls.rb.spec b/spec/lib/rufo/formatter_source_specs/method_calls.rb.spec index 7a20e308..0ed4ca9f 100644 --- a/spec/lib/rufo/formatter_source_specs/method_calls.rb.spec +++ b/spec/lib/rufo/formatter_source_specs/method_calls.rb.spec @@ -748,3 +748,21 @@ foobar 1, #~# EXPECTED (a b).c([1, 2, 3]) + +#~# ORIGINAL indent_bug +#~# print_width: 1 +#~# PENDING + +a([ + b( + something + ), +]) + +#~# EXPECTED + +a([ + b( + something + ), +])