summaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2022-02-16 18:41:08 +0100
committerJon Marius Venstad <venstad@gmail.com>2022-02-16 18:41:08 +0100
commit8158355d74378b1001eeebb72cca37a8fffae823 (patch)
treed36782fb6e99c0ca62d07089b8c615d5e87497a0 /vespa-osgi-testrunner
parent819bf573a18c3dbb6d176aedc9c9d9b07a9593ae (diff)
Set the right variable
Diffstat (limited to 'vespa-osgi-testrunner')
-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;
}