Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2016-05-11 15:11:04 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2016-05-12 14:03:55 +0300
commit36083b4d0ee6787da6be13b45cc7144de704c308 (patch)
tree09435256de20597c7860a347d2f0a4ed1b8da8ec /spec/lib
parent443c3aa5972fda2f9899fe3618ebfb9a31f59e1f (diff)
Fixed styling per Rubocop pedantics
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/gitlab/database/migration_helpers_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/lib/gitlab/database/migration_helpers_spec.rb b/spec/lib/gitlab/database/migration_helpers_spec.rb
index ad2f3cb7e45..ec43165bb53 100644
--- a/spec/lib/gitlab/database/migration_helpers_spec.rb
+++ b/spec/lib/gitlab/database/migration_helpers_spec.rb
@@ -105,9 +105,9 @@ describe Gitlab::Database::MigrationHelpers, lib: true do
expect(model).to receive(:remove_column).
with(:projects, :foo)
- expect {
+ expect do
model.add_column_with_default(:projects, :foo, :integer, default: 10)
- }.to raise_error(RuntimeError)
+ end.to raise_error(RuntimeError)
end
end
@@ -115,9 +115,9 @@ describe Gitlab::Database::MigrationHelpers, lib: true do
it 'raises RuntimeError' do
expect(model).to receive(:transaction_open?).and_return(true)
- expect {
+ expect do
model.add_column_with_default(:projects, :foo, :integer, default: 10)
- }.to raise_error(RuntimeError)
+ end.to raise_error(RuntimeError)
end
end
end