Skip to content

Commit

Permalink
New and improved coverage. Even more than before!
Browse files Browse the repository at this point in the history
  • Loading branch information
agordon-vivid committed Dec 3, 2024
1 parent 099af8e commit 6d1c803
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ public ResponseEntity<CollectionModel<ProjectModel>> getAllProjects() {
ResponseEntity<CollectionModel<ProjectModel>> response;

try {
CollectionModel<ProjectModel> allProjects = projectService.getAllProjects();
response = ok(allProjects);
response = ok(projectService.getAllProjects());
} catch (ServiceException e) {
response = internalServerError();
log.error(" ### Error while fetching Projects", e);
Expand Down

0 comments on commit 6d1c803

Please sign in to comment.