summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-07-09 14:46:13 +0200
committerGitHub <noreply@github.com>2020-07-09 14:46:13 +0200
commitfa1346f02f2588de9e04fee801a75c63b0cc05db (patch)
tree559597028cbefa966a9550458dfd8a167f758df2
parenta7370f8a02e65594cd032f0c3922b947ef2bb797 (diff)
parentbf81bd2812cb0495fbf7d99d8b7d58977b41b970 (diff)
Merge pull request #13852 from vespa-engine/bjorncs/fix
Add staging setup tests to correct list
-rw-r--r--vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/TestAnnotationAnalyzer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/TestAnnotationAnalyzer.java b/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/TestAnnotationAnalyzer.java
index e8b29b2b0f7..36c61a9c08a 100644
--- a/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/TestAnnotationAnalyzer.java
+++ b/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/TestAnnotationAnalyzer.java
@@ -69,7 +69,7 @@ class TestAnnotationAnalyzer {
} else if (StagingTest.class.getName().equals(annotationClassName)) {
stagingTests.add(className);
} else if (StagingSetup.class.getName().equals(annotationClassName)) {
- stagingTests.add(className);
+ stagingSetupTests.add(className);
} else if (SystemTest.class.getName().equals(annotationClassName)) {
systemTests.add(className);
}