diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-02-19 13:14:01 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-02-19 13:32:39 +0100 |
commit | c21f9382b1020ffd8328995f5081dae05df4ed5f (patch) | |
tree | e5f608d4484f6a90f0d9420768a464381886f81e /it/it-tests | |
parent | 03bf8ad81a9f48fb7342c4707a6a4ac6774a69f1 (diff) | |
download | sonarqube-c21f9382b1020ffd8328995f5081dae05df4ed5f.tar.gz sonarqube-c21f9382b1020ffd8328995f5081dae05df4ed5f.zip |
Fix bad import of org.assertj.core.api.Java6Assertions.assertThat
Diffstat (limited to 'it/it-tests')
-rw-r--r-- | it/it-tests/src/test/java/it/projectSearch/SearchProjectsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it/it-tests/src/test/java/it/projectSearch/SearchProjectsTest.java b/it/it-tests/src/test/java/it/projectSearch/SearchProjectsTest.java index d7815e15a3e..16fd31cdb87 100644 --- a/it/it-tests/src/test/java/it/projectSearch/SearchProjectsTest.java +++ b/it/it-tests/src/test/java/it/projectSearch/SearchProjectsTest.java @@ -30,7 +30,7 @@ import org.sonarqube.ws.WsComponents.Component; import org.sonarqube.ws.WsComponents.SearchProjectsWsResponse; import org.sonarqube.ws.client.component.SearchProjectsRequest; -import static org.assertj.core.api.Java6Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThat; import static util.ItUtils.newAdminWsClient; import static util.ItUtils.projectDir; |