summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Koronen <koronen@kth.se>2015-08-08 16:55:20 +0200
committerVictor Koronen <koronen@kth.se>2015-08-14 12:29:44 +0200
commitea73d220a5e012f8ec41fef1770152145114ca5b (patch)
tree2907cc5754852b1fc324a7822308b2d55a915397
parent3dcd4d5ba009873f2499787f1dbfbf10cd6ec134 (diff)
downloadbundler-ea73d220a5e012f8ec41fef1770152145114ca5b.tar.gz
Fix Style/MethodCallParentheses
-rw-r--r--.rubocop_todo.yml5
-rw-r--r--spec/runtime/load_spec.rb2
2 files changed, 1 insertions, 6 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index 33b16c6c44..9166deb8c5 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -218,11 +218,6 @@ Style/LeadingCommentSpace:
Style/LineEndConcatenation:
Enabled: false
-# Offense count: 1
-# Cop supports --auto-correct.
-Style/MethodCallParentheses:
- Enabled: false
-
# Offense count: 2
Style/ModuleFunction:
Enabled: false
diff --git a/spec/runtime/load_spec.rb b/spec/runtime/load_spec.rb
index 1ba79adc85..950e8e9b18 100644
--- a/spec/runtime/load_spec.rb
+++ b/spec/runtime/load_spec.rb
@@ -32,7 +32,7 @@ describe "Bundler.load" do
expect {
ENV["BUNDLE_GEMFILE"] = ""
Bundler.load
- }.not_to raise_error()
+ }.not_to raise_error
end
end