diff --git a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java index 4094b5ebc6b..41cb0cae78e 100644 --- a/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java +++ b/its/plugin/tests/src/test/java/com/sonar/it/java/suite/JavaComplexityTest.java @@ -26,7 +26,6 @@ import org.junit.Test; import org.sonarqube.ws.Issues.Issue; -import static com.sonar.it.java.suite.JavaTestSuite.getMeasure; import static com.sonar.it.java.suite.JavaTestSuite.getMeasureAsInteger; import static org.assertj.core.api.Assertions.assertThat; @@ -87,11 +86,6 @@ public void testProjectComplexity() { assertThat(getMeasureAsInteger(PROJECT, "complexity")).isEqualTo(16); } - @Test - public void shouldNotPersistDistributionOnFiles() { - assertThat(getMeasure(JavaTestSuite.keyFor(PROJECT, "complexity/", "Helloworld.java"), "function_complexity_distribution")).isNull(); - } - @Test public void complexity_sqale_computation() { List issues = TestUtils.issuesForComponent(orchestrator, PROJECT);