diff options
author | Yuki Asano <yuuki.1224.softtennis@gmail.com> | 2016-03-28 16:27:18 -0700 |
---|---|---|
committer | Yuki Asano <yuuki.1224.softtennis@gmail.com> | 2016-03-28 16:27:18 -0700 |
commit | 351831dd9deadf4b732f2cf6c6076786d13496a8 (patch) | |
tree | 4a5b9697d0e807d6dcb95402ead789380537f95b /spec/cache | |
parent | d716a0ada398f53cd0ecf5e1708d10426e3833eb (diff) | |
download | bundler-351831dd9deadf4b732f2cf6c6076786d13496a8.tar.gz |
Fix typo in cache/platform_spec.rb
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 e3702aaaf6..259eff0e15 100644 --- a/spec/cache/platform_spec.rb +++ b/spec/cache/platform_spec.rb @@ -34,7 +34,7 @@ describe "bundle cache with multiple platforms" do cache_gems "rack-1.0.0", "activesupport-2.3.5" end - it "ensures that a succesful bundle install does not delete gems for other platforms" do + it "ensures that a successful bundle install does not delete gems for other platforms" do bundle "install" expect(exitstatus).to eq 0 if exitstatus @@ -43,7 +43,7 @@ describe "bundle cache with multiple platforms" do expect(bundled_app("vendor/cache/activesupport-2.3.5.gem")).to exist end - it "ensures that a succesful bundle update does not delete gems for other platforms" do + it "ensures that a successful bundle update does not delete gems for other platforms" do bundle "update" expect(exitstatus).to eq 0 if exitstatus |