summaryrefslogtreecommitdiff
path: root/spec/unit/key_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/key_spec.rb')
-rw-r--r--spec/unit/key_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/unit/key_spec.rb b/spec/unit/key_spec.rb
index 63c5982137..e3d9f8e7ad 100644
--- a/spec/unit/key_spec.rb
+++ b/spec/unit/key_spec.rb
@@ -406,9 +406,9 @@ describe Chef::Key do
it "creates a new key via the API with the fingerprint as the name" do
expect(rest).to receive(:post).with(url,
- { "name" => "12:3e:33:73:0b:f4:ec:72:dc:f0:4c:51:62:27:08:76:96:24:f4:4a",
- "public_key" => key.public_key,
- "expiration_date" => key.expiration_date }).and_return({})
+ { "name" => "12:3e:33:73:0b:f4:ec:72:dc:f0:4c:51:62:27:08:76:96:24:f4:4a",
+ "public_key" => key.public_key,
+ "expiration_date" => key.expiration_date }).and_return({})
key.create
end
end
@@ -424,9 +424,9 @@ describe Chef::Key do
context "when create_key is false" do
it "creates a new key via the API" do
expect(rest).to receive(:post).with(url,
- { "name" => key.name,
- "public_key" => key.public_key,
- "expiration_date" => key.expiration_date }).and_return({})
+ { "name" => key.name,
+ "public_key" => key.public_key,
+ "expiration_date" => key.expiration_date }).and_return({})
key.create
end
end