summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTad Hosford <tad.hosford@gmail.com>2013-06-27 14:00:55 -0500
committerAndre Arko <andre@arko.net>2013-07-03 11:26:57 -0700
commit573d50c5f71f50a3c320b74aa141188bb9e39e9e (patch)
tree0ed55dc8758fe3a00dc14cadd0c5db970e6386bb
parent3921123ed90021fbd5065b640a72e5e9d3213280 (diff)
downloadbundler-573d50c5f71f50a3c320b74aa141188bb9e39e9e.tar.gz
Fixes to wording in other/platform_spec.rb
- mri -> MRI - grammar
-rw-r--r--spec/other/platform_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/other/platform_spec.rb b/spec/other/platform_spec.rb
index f0329a53e9..4efac30e8e 100644
--- a/spec/other/platform_spec.rb
+++ b/spec/other/platform_spec.rb
@@ -81,7 +81,7 @@ G
expect(out).to eq("ruby 1.9.3")
end
- it "engine defaults to MRI" do
+ it "defaults to MRI" do
gemfile <<-G
source "file://#{gem_repo1}"
ruby "1.9.3"
@@ -146,7 +146,7 @@ G
expect(exitstatus).not_to eq(0)
end
- it "raises an error if engine version doesn't match ruby version for mri" do
+ it "raises an error if engine version doesn't match ruby version for MRI" do
gemfile <<-G
source "file://#{gem_repo1}"
ruby "1.8.7", :engine => 'ruby', :engine_version => '1.2.4'