aboutsummaryrefslogtreecommitdiffstats
path: root/spec/update
diff options
context:
space:
mode:
authorRyan T. Hosford <tad.hosford@gmail.com>2013-07-02 15:59:27 -0500
committerAndre Arko <andre@arko.net>2013-07-03 11:24:12 -0700
commit7c45fb7a39ef663ecddba406d7b1dfec0435a61e (patch)
tree0c1743f4e7ebf7af3fd8fd9222fdee49e9494c8e /spec/update
parent6f6fafef945542ff4baa1dd0ee66631a72b28a41 (diff)
downloadbundler-7c45fb7a39ef663ecddba406d7b1dfec0435a61e.tar.gz
Fixes regular expression in new quality spec
- Fixes inconsistencies revealed by repairing regex
Diffstat (limited to 'spec/update')
-rw-r--r--spec/update/gems_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/update/gems_spec.rb b/spec/update/gems_spec.rb
index 1f03407b..26a367d0 100644
--- a/spec/update/gems_spec.rb
+++ b/spec/update/gems_spec.rb
@@ -34,12 +34,12 @@ describe "bundle update" do
end
describe "--quiet argument" do
- it 'shows UI messages without --quiet argument' do
+ it "shows UI messages without --quiet argument" do
bundle "update"
expect(out).to include("Fetching source")
end
- it 'does not show UI messages with --quiet argument' do
+ it "does not show UI messages with --quiet argument" do
bundle "update --quiet"
expect(out).not_to include("Fetching source")
end