This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 35dfeed Use consistent names for methods
35dfeed is described below
commit 35dfeeda79f77d6b149a3693e8f7b2d342b34e7b
Author: Felix Schumacher <[email protected]>
AuthorDate: Sat Aug 3 14:06:57 2019 +0200
Use consistent names for methods
Related to #475
Bugzilla Id: 63452
Bugzilla Id: 63419
---
.../java/org/apache/jmeter/protocol/http/curl/BasicCurlParser.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/BasicCurlParser.java
b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/BasicCurlParser.java
index 8cc04fc..04113a3 100644
---
a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/BasicCurlParser.java
+++
b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/curl/BasicCurlParser.java
@@ -439,7 +439,7 @@ public class BasicCurlParser {
* the options which work for SSL
* @param caCert cert of the CA
*/
- public void setCacert(String caCert) {
+ public void setCaCert(String caCert) {
this.caCert = caCert;
}
@@ -725,7 +725,7 @@ public class BasicCurlParser {
String authOption = option.getDescriptor().getName();
setAuthMechanism(authOption, request.getAuthorization());
} else if (SSL_OPT.contains(option.getDescriptor().getId())) {
- request.setCacert(option.getDescriptor().getName());
+ request.setCaCert(option.getDescriptor().getName());
} else if (option.getDescriptor().getId() == GET_OPT) {
isPostToGet = true;
} else if (option.getDescriptor().getId() == DNS_OPT) {