summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDennis Suratna <dennis.suratna@gmail.com>2017-03-17 15:19:57 -0700
committerDennis Suratna <dennis.suratna@gmail.com>2017-04-11 18:33:29 +0700
commitc7cadc35d14a433716c11a4508331923e906b78d (patch)
treea5f257f0ac5b2098f96b7d43695885f2a929e559 /spec
parent520f477c364a61a27069bece9169ed362cb6ae8b (diff)
downloadbundler-c7cadc35d14a433716c11a4508331923e906b78d.tar.gz
Fix rubocop errors
Diffstat (limited to 'spec')
-rw-r--r--spec/commands/pristine_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/commands/pristine_spec.rb b/spec/commands/pristine_spec.rb
index 5b63ec257c..ff327e190b 100644
--- a/spec/commands/pristine_spec.rb
+++ b/spec/commands/pristine_spec.rb
@@ -47,7 +47,7 @@ RSpec.describe "bundle pristine" do
changed_file = Pathname.new(spec.full_gem_path).join("lib/foo.rb")
diff = "#Pristine spec changes"
- File.open(changed_file, 'a') { |f| f.puts '#Pristine spec changes' }
+ File.open(changed_file, "a") {|f| f.puts "#Pristine spec changes" }
expect(File.read(changed_file)).to include(diff)
bundle "pristine"
@@ -61,7 +61,7 @@ RSpec.describe "bundle pristine" do
changed_file = Pathname.new(spec.full_gem_path).join("lib/baz.rb")
diff = "#Pristine spec changes"
- File.open(changed_file, 'a') { |f| f.puts '#Pristine spec changes' }
+ File.open(changed_file, "a") {|f| f.puts "#Pristine spec changes" }
expect(File.read(changed_file)).to include(diff)
bundle "pristine"
@@ -74,7 +74,7 @@ RSpec.describe "bundle pristine" do
changed_file = Pathname.new(spec.full_gem_path).join("lib/baz-dev.rb")
diff = "#Pristine spec changes"
- File.open(changed_file, 'a') { |f| f.puts '#Pristine spec changes' }
+ File.open(changed_file, "a") {|f| f.puts "#Pristine spec changes" }
expect(File.read(changed_file)).to include(diff)
bundle "pristine"