diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-01-26 22:50:28 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-01-29 10:14:16 +0100 |
commit | bc735cf09cb0017ab5a8acce87d36240cc0acb28 (patch) | |
tree | 7f72e620ad21f33e3d53fb5d867378198de5cc19 /tests | |
parent | ff49002afd726123d6ed894c5a151cef2c250ffb (diff) | |
download | sonarqube-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.java | 2 |
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 { |