diff options
author | Adam Jacob <adam@opscode.com> | 2011-04-05 11:56:46 -0700 |
---|---|---|
committer | Daniel DeLeo <dan@opscode.com> | 2011-04-06 14:16:04 -0700 |
commit | f6e0f60f66154b1719a8909043e1b574e7c4658c (patch) | |
tree | e8628d6212053edc2e2b3128aa05f470292373f0 | |
parent | 36198236b7bba6fb7ec1f20adc3fb87a978e8a48 (diff) | |
download | chef-f6e0f60f66154b1719a8909043e1b574e7c4658c.tar.gz |
Fixing package spec
-rw-r--r-- | chef/spec/unit/provider/package_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/spec/unit/provider/package_spec.rb b/chef/spec/unit/provider/package_spec.rb index bb79e6b40b..7654b57bb9 100644 --- a/chef/spec/unit/provider/package_spec.rb +++ b/chef/spec/unit/provider/package_spec.rb @@ -159,7 +159,7 @@ describe Chef::Provider::Package do it "should print the word 'uninstalled' if there was no original version" do @current_resource.stub!(:version).and_return(nil) - Chef::Log.should_receive(:info).with("Upgrading #{@new_resource} version from uninstalled to 1.0") + Chef::Log.should_receive(:info).with("package[emacs] upgraded from uninstalled to 1.0") @provider.action_upgrade end end |