aboutsummaryrefslogtreecommitdiffstats
path: root/it
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-26 17:46:54 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-29 11:03:32 +0200
commite140eb43c7384fcaee539e9b1a07fae48cf95da2 (patch)
treecaefe830545c787e921a1600e49eacc69fc76476 /it
parent54159d5a3125c665d49eafcf3f522ecc3c715bb2 (diff)
downloadsonarqube-e140eb43c7384fcaee539e9b1a07fae48cf95da2.tar.gz
sonarqube-e140eb43c7384fcaee539e9b1a07fae48cf95da2.zip
Fix category of integration tests
Diffstat (limited to 'it')
-rw-r--r--it/tests/pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/it/tests/pom.xml b/it/tests/pom.xml
index 9249fd32ad7..b23fad4e1f4 100644
--- a/it/tests/pom.xml
+++ b/it/tests/pom.xml
@@ -78,13 +78,13 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
- <include>org/sonar/it/${category}/suite/*TestSuite.java</include>
+ <include>${category}/suite/*TestSuite.java</include>
<!-- not included in suites -->
- <include>org/sonar/it/${category}/*Test.java</include>
+ <include>${category}/*Test.java</include>
</includes>
<excludes>
<!-- included into suites -->
- <exclude>org/sonar/it/*/suite/*Test.java</exclude>
+ <exclude>*/suite/*Test.java</exclude>
</excludes>
</configuration>
</plugin>