This is an automated email from the ASF dual-hosted git repository.
valdar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
The following commit(s) were added to refs/heads/master by this push:
new 4b96891 chore: rename poorly named variable in test code
4b96891 is described below
commit 4b968918b963cdc9c1c0308c9848402be2d34fcd
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Mon May 11 16:17:50 2020 +0200
chore: rename poorly named variable in test code
---
.../apache/camel/kafkaconnector/SourceConnectorPropertyFactory.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/tests/src/test/java/org/apache/camel/kafkaconnector/SourceConnectorPropertyFactory.java
b/tests/src/test/java/org/apache/camel/kafkaconnector/SourceConnectorPropertyFactory.java
index 221384d..ecab0db 100644
---
a/tests/src/test/java/org/apache/camel/kafkaconnector/SourceConnectorPropertyFactory.java
+++
b/tests/src/test/java/org/apache/camel/kafkaconnector/SourceConnectorPropertyFactory.java
@@ -25,8 +25,8 @@ public abstract class SourceConnectorPropertyFactory<T
extends SourceConnectorPr
return (T) this;
}
- public T withSourceUrl(String sinkUrl) {
- getProperties().put("camel.source.url", sinkUrl);
+ public T withSourceUrl(String sourceUrl) {
+ getProperties().put("camel.source.url", sourceUrl);
return (T) this;
}