summaryrefslogtreecommitdiff
path: root/spec/unit/knife/key_delete_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/knife/key_delete_spec.rb')
-rw-r--r--spec/unit/knife/key_delete_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/knife/key_delete_spec.rb b/spec/unit/knife/key_delete_spec.rb
index 0176f3c71e..87969198dc 100644
--- a/spec/unit/knife/key_delete_spec.rb
+++ b/spec/unit/knife/key_delete_spec.rb
@@ -44,9 +44,9 @@ describe "key delete commands that inherit knife" do
context "when the service object is called" do
it "creates a new instance of Chef::Knife::KeyDelete with the correct args" do
- expect(Chef::Knife::KeyDelete).to receive(:new).
- with("charmander-key", "charmander", command.actor_field_name, command.ui).
- and_return(service_object)
+ expect(Chef::Knife::KeyDelete).to receive(:new)
+ .with("charmander-key", "charmander", command.actor_field_name, command.ui)
+ .and_return(service_object)
command.service_object
end
end # when the service object is called