Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcanas committed May 2, 2024
1 parent 431dab5 commit 302d8d9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void createVersions(@NotNull List<ChartVersion> versions) {
}

@ReadTransaction
public List<ChartVersion> getVersions(@NotNull List<String> names, Boolean includeAll) {
public List<ChartVersion> getVersions(@NotNull List<String> names, @NotNull Boolean includeAll) {
return chartVersionDao.get(names, includeAll);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class AdminControllerTest {
@Autowired private MockMvc mockMvc;

@Captor ArgumentCaptor<List<bio.terra.appmanager.model.ChartVersion>> capture_chartVersions;
@Captor ArgumentCaptor<List<String>> capture_chartNames;

private AutoCloseable closeable;

Expand Down

0 comments on commit 302d8d9

Please sign in to comment.