summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Burkhart & Josh Lane <jburkhart@engineyard.com>2011-09-22 17:11:26 -0700
committerJacob Burkhart & Josh Lane <jburkhart@engineyard.com>2011-09-22 17:11:26 -0700
commit2081b9461c8ed9879e602dc1cea4b77d80718edd (patch)
tree137e61a19dc5e45bd931445c372771939d0b3033
parentd1ce70c90fc1eaf69b47ea47b574ce05c87d0c4a (diff)
downloadbundler-2081b9461c8ed9879e602dc1cea4b77d80718edd.tar.gz
no need to for [Cc] in regex with /i
-rw-r--r--spec/install/git_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/install/git_spec.rb b/spec/install/git_spec.rb
index 790f467222..117c47426b 100644
--- a/spec/install/git_spec.rb
+++ b/spec/install/git_spec.rb
@@ -403,7 +403,7 @@ describe "bundle install with git sources" do
gem "has_submodule"
end
G
- out.should =~ /[Cc]ould not find gem 'submodule/i
+ out.should =~ /could not find gem 'submodule/i
should_not_be_installed "has_submodule 1.0", :expect_err => true
end