class RuboCop::Cop::Rails::FilePath

def remove_first_argument_with_comma(corrector, node)

def remove_first_argument_with_comma(corrector, node)
  corrector.remove(
    range_with_surrounding_space(
      range_with_surrounding_comma(
        node.first_argument.source_range,
        :right
      ),
      side: :right
    )
  )
end