summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuki Asano <yuuki.1224.softtennis@gmail.com>2016-03-28 16:27:18 -0700
committerYuki Asano <yuuki.1224.softtennis@gmail.com>2016-03-28 16:27:18 -0700
commit351831dd9deadf4b732f2cf6c6076786d13496a8 (patch)
tree4a5b9697d0e807d6dcb95402ead789380537f95b
parentd716a0ada398f53cd0ecf5e1708d10426e3833eb (diff)
downloadbundler-351831dd9deadf4b732f2cf6c6076786d13496a8.tar.gz
Fix typo in cache/platform_spec.rb
-rw-r--r--spec/cache/platform_spec.rb4
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