summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhttp://jneen.net/ <jneen@jneen.net>2017-06-26 17:59:45 -0700
committerhttp://jneen.net/ <jneen@jneen.net>2017-06-26 18:00:01 -0700
commit2f0a7088d33a1630c3e54812d10219b75cdf7bc4 (patch)
tree3e68f6c4f844a92900af8344eecd091b7db52298
parent7ef3cf64d6d6af9941401af748274677ff3af15d (diff)
downloadgitlab-ce-2f0a7088d33a1630c3e54812d10219b75cdf7bc4.tar.gz
rm use of deprecated webmock api in teamcity_service_spec
-rw-r--r--spec/models/project_services/teamcity_service_spec.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/models/project_services/teamcity_service_spec.rb b/spec/models/project_services/teamcity_service_spec.rb
index 7349eb4149a..6b004098510 100644
--- a/spec/models/project_services/teamcity_service_spec.rb
+++ b/spec/models/project_services/teamcity_service_spec.rb
@@ -205,10 +205,12 @@ describe TeamcityService, models: true, caching: true do
end
def stub_request(status: 200, body: nil, build_status: 'success')
- teamcity_full_url = 'http://mic:password@gitlab.com/teamcity/httpAuth/app/rest/builds/branch:unspecified:any,number:123'
+ teamcity_full_url = 'http://gitlab.com/teamcity/httpAuth/app/rest/builds/branch:unspecified:any,number:123'
+ auth = %w(mic password)
+
body ||= %Q({"build":{"status":"#{build_status}","id":"666"}})
- WebMock.stub_request(:get, teamcity_full_url).to_return(
+ WebMock.stub_request(:get, teamcity_full_url).with(basic_auth: auth).to_return(
status: status,
headers: { 'Content-Type' => 'application/json' },
body: body