aboutsummaryrefslogtreecommitdiffstats
path: root/spec/realworld
diff options
context:
space:
mode:
authorTerence Lee <hone02@gmail.com>2013-11-09 17:35:35 -0500
committerTerence Lee <hone02@gmail.com>2013-11-09 18:39:51 -0500
commitac09073372c964ee2dcb1ded12df6ad1a6bef053 (patch)
tree12e8f56496277699b1bb8418b8072ade64781892 /spec/realworld
parentc21741dd08cb95dff6e0215d03e1d8ae9aa38cf8 (diff)
downloadbundler-ac09073372c964ee2dcb1ded12df6ad1a6bef053.tar.gz
fix update parallel spec
Diffstat (limited to 'spec/realworld')
-rw-r--r--spec/realworld/parallel_update_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/realworld/parallel_update_spec.rb b/spec/realworld/parallel_update_spec.rb
index 37f1d64e..394caba2 100644
--- a/spec/realworld/parallel_update_spec.rb
+++ b/spec/realworld/parallel_update_spec.rb
@@ -4,7 +4,7 @@ describe "updating dependencies parallely", :realworld => true do
before :each do
install_gemfile <<-G
source "https://rubygems.org"
- gem 'activesupport', '~> 3.2.13'
+ gem 'activesupport', '~> 3.2.12'
gem 'faker', '~> 1.1.2'
G
end
@@ -12,14 +12,14 @@ describe "updating dependencies parallely", :realworld => true do
it "installs gems parallely" do
gemfile <<-G
source "https://rubygems.org"
- gem 'activesupport', '~> 4.0.0'
+ gem 'activesupport', '3.2.13'
gem 'faker', '~> 1.1.2'
G
bundle :update, :jobs => 4
bundle "show activesupport"
- expect(out).to match(/activesupport-4\.0\.\d+/)
+ expect(out).to match(/activesupport-3\.2\.13/)
bundle "show faker"
expect(out).to match(/faker/)