From 9f46488805e86b1bc341ea1620b866016c2ce5ed Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 20 May 2020 14:34:42 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-0-stable-ee --- spec/rubocop/cop/migration/add_columns_to_wide_tables_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec/rubocop/cop/migration/add_columns_to_wide_tables_spec.rb') diff --git a/spec/rubocop/cop/migration/add_columns_to_wide_tables_spec.rb b/spec/rubocop/cop/migration/add_columns_to_wide_tables_spec.rb index f0c64740e63..5b179168eab 100644 --- a/spec/rubocop/cop/migration/add_columns_to_wide_tables_spec.rb +++ b/spec/rubocop/cop/migration/add_columns_to_wide_tables_spec.rb @@ -42,8 +42,8 @@ describe RuboCop::Cop::Migration::AddColumnsToWideTables do expect_offense(<<~RUBY) def up - add_column_with_default(:users, :another_column, :boolean, default: false) - ^^^^^^^^^^^^^^^^^^^^^^^ #{offense} + add_column(:users, :another_column, :boolean, default: false) + ^^^^^^^^^^ #{offense} end RUBY end -- cgit v1.2.1