Skip to content

Commit

Permalink
#295 Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
jemacineiras committed Oct 8, 2023
1 parent 51d600e commit 8ccc859
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,4 @@ public String toString() {
}




}
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public ApiTestInfoDTO.ApiTestInfoDTOBuilder testers(List<String> testers) {
return this;
}

public ApiTestInfoDTO.ApiTestInfoDTOBuilder testers(String testers) {
if (testers != null) {
this.testers.add(testers);
public ApiTestInfoDTO.ApiTestInfoDTOBuilder tester(String tester) {
if (tester != null) {
this.testers.add(tester);
}
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public ApiTestInfoDTO.ApiTestInfoDTOBuilder testers(List<String> testers) {
return this;
}

public ApiTestInfoDTO.ApiTestInfoDTOBuilder testers(String testers) {
if (testers != null) {
this.testers.add(testers);
public ApiTestInfoDTO.ApiTestInfoDTOBuilder tester(String tester) {
if (tester != null) {
this.testers.add(tester);
}
return this;
}
Expand Down

0 comments on commit 8ccc859

Please sign in to comment.