aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2018-01-26 22:50:28 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2018-01-29 10:14:16 +0100
commitbc735cf09cb0017ab5a8acce87d36240cc0acb28 (patch)
tree7f72e620ad21f33e3d53fb5d867378198de5cc19 /tests
parentff49002afd726123d6ed894c5a151cef2c250ffb (diff)
downloadsonarqube-bc735cf09cb0017ab5a8acce87d36240cc0acb28.tar.gz
sonarqube-bc735cf09cb0017ab5a8acce87d36240cc0acb28.zip
Fix bad imports of Java6Assertions
Diffstat (limited to 'tests')
-rw-r--r--tests/src/test/java/org/sonarqube/tests/component/BranchTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/test/java/org/sonarqube/tests/component/BranchTest.java b/tests/src/test/java/org/sonarqube/tests/component/BranchTest.java
index 78e2a722356..e1e5dab62c3 100644
--- a/tests/src/test/java/org/sonarqube/tests/component/BranchTest.java
+++ b/tests/src/test/java/org/sonarqube/tests/component/BranchTest.java
@@ -33,7 +33,7 @@ import org.sonarqube.ws.client.WsResponse;
import org.sonarqube.ws.client.projectbranches.ListRequest;
import util.ItUtils;
-import static org.assertj.core.api.Java6Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThat;
import static util.ItUtils.runProjectAnalysis;
public class BranchTest {