Skip to content

Commit

Permalink
make NotebookPluginTest pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Seppli11 committed Dec 16, 2024
1 parent d8abd2e commit dbcef7f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ static void startServer() {
@Test
void test() {
List<Issues.Issue> issues = issues(PROJECT_KEY);
assertThat(issues).isEmpty();
assertThat(issues)
.extracting(Issues.Issue::getRule)
.containsExactlyInAnyOrder("ipython:PrintStatementUsage", "ipython:S1854", "ipython:S3457", "ipython:S5727", "ipython:S5727");
}
}

0 comments on commit dbcef7f

Please sign in to comment.