diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2019-06-19 09:38:03 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-06-28 08:45:40 +0200 |
commit | bcd5d06e3c1aeca6090d4f26b204e8085cfd8e48 (patch) | |
tree | 418d32d477a19fa49b2690cec310ce9579770333 /server/sonar-main | |
parent | ae791695c0432f6e7d916f081af25ce67d90679d (diff) | |
download | sonarqube-bcd5d06e3c1aeca6090d4f26b204e8085cfd8e48.tar.gz sonarqube-bcd5d06e3c1aeca6090d4f26b204e8085cfd8e48.zip |
Fix ITs
Diffstat (limited to 'server/sonar-main')
-rw-r--r-- | server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java b/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java index 19fc8bbc43e..ad86c41ffd2 100644 --- a/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java +++ b/server/sonar-main/src/test/java/org/sonar/application/cluster/AppNodesClusterHostsConsistencyTest.java @@ -34,6 +34,7 @@ import java.util.Map; import java.util.Set; import java.util.concurrent.locks.Lock; import java.util.function.Consumer; +import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; @@ -59,6 +60,7 @@ public class AppNodesClusterHostsConsistencyTest { private Consumer<String> logger = mock(Consumer.class); @Before + @After public void setUp() { AppNodesClusterHostsConsistency.clearInstance(); } |