summaryrefslogtreecommitdiff
path: root/spec/unit/knife/org_edit_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/knife/org_edit_spec.rb')
-rw-r--r--spec/unit/knife/org_edit_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/knife/org_edit_spec.rb b/spec/unit/knife/org_edit_spec.rb
index 3badaf5168..05339e8f21 100644
--- a/spec/unit/knife/org_edit_spec.rb
+++ b/spec/unit/knife/org_edit_spec.rb
@@ -31,7 +31,7 @@ describe Chef::Knife::OrgEdit do
end
it "loads and edits the organisation" do
- expect(Chef::ServerAPI).to receive(:new).with(Chef::Config[:chef_server_url], { api_version: "1" }).and_return(root_rest)
+ expect(Chef::ServerAPI).to receive(:new).with(Chef::Config[:chef_server_root]).and_return(root_rest)
original_data = { "org_name" => "my_org" }
data = { "org_name" => "my_org1" }
expect(root_rest).to receive(:get).with("organizations/foobar").and_return(original_data)