Skip to content

Commit

Permalink
Remove assertions of endpoints that were removed in SQS
Browse files Browse the repository at this point in the history
  • Loading branch information
kebetsi committed Dec 23, 2024
1 parent dbf04b1 commit cf1f0f0
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ public void testProjectMeasures() {

assertThat(getProjectMeasureAsDouble("public_api")).isNull();
assertThat(getProjectMeasureAsDouble("complexity")).isEqualTo(391d);
assertThat(getProjectMeasureAsDouble("function_complexity")).isNull();
assertThat(getProjectMeasureAsDouble("function_complexity_distribution")).isNull();
assertThat(getProjectMeasureAsDouble("file_complexity")).isEqualTo(3.8);
}

@Test
Expand Down Expand Up @@ -104,9 +101,6 @@ public void testFileMeasures() {
assertThat(getFileMeasureAsDouble("duplicated_lines_density")).isZero();
assertThat(getFileMeasureAsDouble("statements")).isNull();
assertThat(getFileMeasureAsDouble("complexity")).isEqualTo(16d);
assertThat(getFileMeasureAsDouble("function_complexity")).isNull();
assertThat(getFileMeasureAsDouble("function_complexity_distribution")).isNull();
assertThat(getFileMeasureAsDouble("file_complexity")).isEqualTo(16.0d);
}

@Test
Expand Down

0 comments on commit cf1f0f0

Please sign in to comment.