summaryrefslogtreecommitdiff
path: root/spec/runtime/platform_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/runtime/platform_spec.rb')
-rw-r--r--spec/runtime/platform_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/runtime/platform_spec.rb b/spec/runtime/platform_spec.rb
index 02cb1b036a..666864a88c 100644
--- a/spec/runtime/platform_spec.rb
+++ b/spec/runtime/platform_spec.rb
@@ -57,7 +57,7 @@ describe "Bundler.setup with multi platform stuff" do
gem "nokogiri"
G
- expect(the_bundle).to have_installed "nokogiri 1.4.2"
+ expect(the_bundle).to include_gems "nokogiri 1.4.2"
end
it "will add the resolve for the current platform" do
@@ -86,6 +86,6 @@ describe "Bundler.setup with multi platform stuff" do
gem "platform_specific"
G
- expect(the_bundle).to have_installed "nokogiri 1.4.2", "platform_specific 1.0 x86-darwin-100"
+ expect(the_bundle).to include_gems "nokogiri 1.4.2", "platform_specific 1.0 x86-darwin-100"
end
end