diff options
author | Matijs van Zuijlen <matijs@matijs.net> | 2014-05-15 22:06:18 +0200 |
---|---|---|
committer | Matijs van Zuijlen <matijs@matijs.net> | 2014-05-15 22:06:18 +0200 |
commit | 35ca9a97a733ec729bbe7ee327189f704bd467d6 (patch) | |
tree | b5c5bce9e692a066639ba4bb1fe1e0882592788d /spec/cache | |
parent | ccc026cdc6923ab86ff6d4575ad6026b75b0b1b0 (diff) | |
download | bundler-35ca9a97a733ec729bbe7ee327189f704bd467d6.tar.gz |
Use Ruby 1.8-compatible hash syntax
Diffstat (limited to 'spec/cache')
-rw-r--r-- | spec/cache/platform_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/cache/platform_spec.rb b/spec/cache/platform_spec.rb index e67a252c62..d9730f545c 100644 --- a/spec/cache/platform_spec.rb +++ b/spec/cache/platform_spec.rb @@ -34,7 +34,7 @@ describe "bundle cache with multiple platforms" do end it "ensures that a succesful bundle install does not delete gems for other platforms" do - bundle "install", exitstatus: true + bundle "install", :exitstatus => true expect(exitstatus).to eq 0 @@ -43,7 +43,7 @@ describe "bundle cache with multiple platforms" do end it "ensures that a succesful bundle update does not delete gems for other platforms" do - bundle "update", exitstatus: true + bundle "update", :exitstatus => true expect(exitstatus).to eq 0 |