@@ -210,7 +210,7 @@ class DownloadResponseTestCase: BaseTestCase {
var response: DefaultDownloadResponse?
// When
- Alamofire.download(urlString, method: .get, headers: headers, to: destination)
+ Alamofire.download(urlString, headers: headers, to: destination)
.response { resp in
response = resp
expectation.fulfill()
@@ -282,7 +282,6 @@ class UploadMultipartFormDataTestCase: BaseTestCase {
formData = multipartFormData
},
to: urlString,
- method: .post,
encodingCompletion: { result in
switch result {
case .success(let upload, _, _):