summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TestReport.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TestReport.java b/vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TestReport.java
index d01e9fffe9f..8cced4f8cd6 100644
--- a/vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TestReport.java
+++ b/vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TestReport.java
@@ -78,8 +78,8 @@ public class TestReport {
return this;
}
- public Builder withInconclusiveCount(long failedCount) {
- this.failedCount = failedCount;
+ public Builder withInconclusiveCount(long inconclusiveCount) {
+ this.inconclusiveCount = inconclusiveCount;
return this;
}