Skip to content

Commit

Permalink
Method naming fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Andreyev committed Jul 29, 2019
1 parent 7b0da9b commit 81d00a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/applitools/jenkins/ApplitoolsJobDsl.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
@Extension(optional = true)
public class ApplitoolsJobDsl extends ContextExtensionPoint {
@DslExtensionMethod(context = WrapperContext.class)
public Object Applitools(String serverUrl) {
public Object applitools(String serverUrl) {
return new ApplitoolsBuildWrapper(serverUrl);
}

@DslExtensionMethod(context = WrapperContext.class)
public Object Applitools() {
public Object applitools() {
return new ApplitoolsBuildWrapper(ApplitoolsCommon.APPLITOOLS_DEFAULT_URL);
}

Expand Down

0 comments on commit 81d00a6

Please sign in to comment.