Skip to content

Commit

Permalink
SONARGO-98 Fix analysis on master (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
mstachniuk authored Dec 24, 2024
1 parent 4598177 commit 8bd5291
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ void go_specific_checks_are_added_to_check_list() {
@Test
void go_excluded_not_present() {
List<Class<?>> checks = GoCheckList.checks();
for (Class excluded : GoCheckList.GO_CHECK_BLACK_LIST) {
assertThat(checks).doesNotContain(excluded);
}
assertThat(checks)
.doesNotContain(GoCheckList.GO_CHECK_BLACK_LIST)
.isNotEmpty();
}

/**
Expand Down

0 comments on commit 8bd5291

Please sign in to comment.