Skip to content

Commit

Permalink
EPMRPP-89421 || Display number of tests related to each Unique Error …
Browse files Browse the repository at this point in the history
…cluster
  • Loading branch information
APiankouski committed Jul 15, 2024
1 parent c5d4be4 commit 9620556
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ public class ClusterInfoResource {
@JsonProperty(value = "metadata")
private Map<String, Object> metadata;

@JsonProperty(value = "matchedTest")
private Long matchedTest;
@JsonProperty(value = "matchedTests")
private Long matchedTests;

public ClusterInfoResource() {
}

public ClusterInfoResource(Long id, Long index, Long launchId, String message, Long matchedTest) {
public ClusterInfoResource(Long id, Long index, Long launchId, String message, Long matchedTests) {
this.id = id;
this.index = index;
this.launchId = launchId;
this.message = message;
this.matchedTest = matchedTest;
this.matchedTests = matchedTests;
}

public Long getId() {
Expand Down Expand Up @@ -95,11 +95,11 @@ public void setMetadata(Map<String, Object> metadata) {
this.metadata = metadata;
}

public Long getMatchedTest() {
return matchedTest;
public Long getMatchedTests() {
return matchedTests;
}

public void setMatchedTest(Long matchedTest) {
this.matchedTest = matchedTest;
public void setMatchedTests(Long matchedTests) {
this.matchedTests = matchedTests;
}
}

0 comments on commit 9620556

Please sign in to comment.