Skip to content

Fix syntax coloring on emacs

Piet Jaspers requested to merge pjaspers/gitlab-ce:pj/fix-emacs-style into master

What does this MR do?

Fix the syntax coloring of lib/gitlab/database/migration_helpers.rb in emacs.

Does this MR meet the acceptance criteria?

Conformity

Performance and testing

Browser testing is not applicable, other tests I'm kind of relying on this existing one:

  describe '#concurrent_foreign_key_name' do
    it 'returns the name for a foreign key' do
      name = model.concurrent_foreign_key_name(:this_is_a_very_long_table_name,
                                               :with_a_very_long_column_name)

      expect(name).to be_an_instance_of(String)
      expect(name.length).to eq(13)
    end
  end

Security

Not applicable

Merge request reports