diff options
author | Pieter van de Bruggen <pieter@puppetlabs.com> | 2011-04-29 15:47:08 -0700 |
---|---|---|
committer | Pieter van de Bruggen <pieter@puppetlabs.com> | 2011-04-29 15:47:49 -0700 |
commit | 040e0fdaacb767d61ef07a41098ebb9c998738e4 (patch) | |
tree | 16907e0c125d8701e663dbdc18e044ddf15ac200 | |
parent | 6815044fbc94c0d502b1061309d5aaeb8f791660 (diff) | |
download | puppet-040e0fdaacb767d61ef07a41098ebb9c998738e4.tar.gz puppet-040e0fdaacb767d61ef07a41098ebb9c998738e4.tar.xz puppet-040e0fdaacb767d61ef07a41098ebb9c998738e4.zip |
(Maint.) Fix accidental debug output in tests.
Reviewed-By: Daniel Pittman
-rwxr-xr-x | spec/unit/interface/action_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/interface/action_spec.rb b/spec/unit/interface/action_spec.rb index f8102f435..ccd791575 100755 --- a/spec/unit/interface/action_spec.rb +++ b/spec/unit/interface/action_spec.rb @@ -350,7 +350,7 @@ describe Puppet::Interface::Action do option("-q", "--action-quux") { after_action { |_,_,_| report :action_quux } } option("-a") { after_action { |_,_,_| report :a } } option("--action-baz") { after_action { |_,_,_| report :action_baz } } - when_invoked { |options| warn options.inspect } + when_invoked { } end option("-u", "--face-quux") { after_action { |_,_,_| report :face_quux } } option("-f") { after_action { |_,_,_| report :f } } |