summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian C. Dunn <jdunn@chef.io>2015-02-16 19:32:18 -0500
committerJulian C. Dunn <jdunn@chef.io>2015-02-16 19:32:18 -0500
commitcd7bac6dc131c958c8f6ccac6e50f2dca655dfd9 (patch)
tree08e527a02e1a1b4170ad53443235488a8f16633f
parent31548f92bd60aeae12924c20348ef7ad10144d7c (diff)
downloadchef-cd7bac6dc131c958c8f6ccac6e50f2dca655dfd9.tar.gz
Missed fixing one test
-rw-r--r--spec/unit/knife/cookbook_site_share_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/knife/cookbook_site_share_spec.rb b/spec/unit/knife/cookbook_site_share_spec.rb
index c5d08df808..f7207dd175 100644
--- a/spec/unit/knife/cookbook_site_share_spec.rb
+++ b/spec/unit/knife/cookbook_site_share_spec.rb
@@ -174,7 +174,7 @@ describe Chef::Knife::CookbookSiteShare do
response_text = Chef::JSONCompat.to_json({:uri => 'https://supermarket.chef.io/cookbooks/cookbook_name'})
allow(@upload_response).to receive(:body).and_return(response_text)
allow(@upload_response).to receive(:code).and_return(201)
- expect(Chef::CookbookSiteStreamingUploader).to receive(:post).with(/supermarket\.getchef\.com/, anything(), anything(), anything())
+ expect(Chef::CookbookSiteStreamingUploader).to receive(:post).with(/supermarket\.chef\.io/, anything(), anything(), anything())
@knife.run
end