summaryrefslogtreecommitdiff
path: root/spec/unit/api_client_spec.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-07-02 10:29:13 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2018-07-02 10:29:13 -0700
commit878560a22f37aec0c2dfe681b3743e027155be88 (patch)
tree676062be70a45e73a8722c0e6dadd220162fb101 /spec/unit/api_client_spec.rb
parent202887162a22e0c7062064fff0d9462f8c02bf0e (diff)
downloadchef-878560a22f37aec0c2dfe681b3743e027155be88.tar.gz
fix Layout/DotPosition
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'spec/unit/api_client_spec.rb')
-rw-r--r--spec/unit/api_client_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/unit/api_client_spec.rb b/spec/unit/api_client_spec.rb
index c3c674ecf7..e83906e712 100644
--- a/spec/unit/api_client_spec.rb
+++ b/spec/unit/api_client_spec.rb
@@ -302,9 +302,9 @@ describe Chef::ApiClient do
@api_client_with_key = Chef::ApiClient.new
@api_client_with_key.name("lost-my-key")
@api_client_with_key.private_key("the new private key")
- expect(@http_client).to receive(:put).
- with("clients/lost-my-key", name: "lost-my-key", admin: false, validator: false, private_key: true).
- and_return(@api_client_with_key)
+ expect(@http_client).to receive(:put)
+ .with("clients/lost-my-key", name: "lost-my-key", admin: false, validator: false, private_key: true)
+ .and_return(@api_client_with_key)
end
it "returns an ApiClient with a private key" do
@@ -320,9 +320,9 @@ describe Chef::ApiClient do
context "and the client exists on a Chef 10-like server" do
before do
@api_client_with_key = { "name" => "lost-my-key", "private_key" => "the new private key" }
- expect(@http_client).to receive(:put).
- with("clients/lost-my-key", name: "lost-my-key", admin: false, validator: false, private_key: true).
- and_return(@api_client_with_key)
+ expect(@http_client).to receive(:put)
+ .with("clients/lost-my-key", name: "lost-my-key", admin: false, validator: false, private_key: true)
+ .and_return(@api_client_with_key)
end
it "returns an ApiClient with a private key" do