Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NaginatorPublisher: Renamed isCheckRegexp to getCheckRegexp. #27

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -108,8 +108,8 @@ public boolean isRerunIfUnstable() {
public boolean isRerunMatrixPart() {
return rerunMatrixPart;
}
public boolean isCheckRegexp() {

public boolean getCheckRegexp() {
return checkRegexp;
}

Expand Down
Expand Up @@ -43,7 +43,7 @@ public NaginatorPublisherScheduleAction(NaginatorPublisher publisher) {
this.regexpForRerun = publisher.getRegexpForRerun();
this.rerunIfUnstable = publisher.isRerunIfUnstable();
this.regexpForMatrixParent = publisher.isRegexpForMatrixParent();
this.checkRegexp = publisher.isCheckRegexp();
this.checkRegexp = publisher.getCheckRegexp();
}

@CheckForNull
Expand Down
Expand Up @@ -315,7 +315,7 @@ public void testConfigurationForRegexpOnFreeStyleProject() throws Exception {
naginator.getRegexpForRerun(),
naginator.isRerunIfUnstable(),
naginator.isRerunMatrixPart(),
naginator.isCheckRegexp(),
naginator.getCheckRegexp(),
false, // regexpForMatrixParent (not preserved)
naginator.getMaxSchedule(),
naginator.getDelay()
Expand Down