summaryrefslogtreecommitdiff
path: root/spec/bundler/source_spec.rb
diff options
context:
space:
mode:
authorAlessandro Lepore <lepore.ale@gmail.com>2016-09-19 16:13:55 +0200
committerAlessandro Lepore <lepore.ale@gmail.com>2016-09-20 08:11:33 +0200
commit53bbe683e732b4568a70201686e3a5a9c2e0b9a6 (patch)
tree6f7226ede3430ab05fe6787fad9a79e6dd6279f3 /spec/bundler/source_spec.rb
parentc36e18098e3efc9f4bf63e4a05c98494b8c7b502 (diff)
downloadbundler-53bbe683e732b4568a70201686e3a5a9c2e0b9a6.tar.gz
fix message parenthesis color
Diffstat (limited to 'spec/bundler/source_spec.rb')
-rw-r--r--spec/bundler/source_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/source_spec.rb b/spec/bundler/source_spec.rb
index 4e99411a17..ea171d387c 100644
--- a/spec/bundler/source_spec.rb
+++ b/spec/bundler/source_spec.rb
@@ -61,7 +61,7 @@ describe Bundler::Source do
before { Bundler.ui = Bundler::UI::Shell.new }
it "should return a string with the spec name and version and locked spec version" do
- expect(subject.version_message(spec)).to eq("nokogiri >= 1.6 (\e[32mwas < 1.5\e[0m)")
+ expect(subject.version_message(spec)).to eq("nokogiri >= 1.6\e[32m (was < 1.5)\e[0m")
end
end