Skip to content

Commit

Permalink
Truck to trucks
Browse files Browse the repository at this point in the history
Corrected typo
  • Loading branch information
alessfrn committed Apr 29, 2024
1 parent 6c16717 commit 8fbd660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ public class SetUpBundleResponse {
private Set<String> deliverymen;

@Schema(description = "Trucks ids")
private Set<String> truck;
private Set<String> trucks;
}
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public SetUpBundleResponse getSetUpBundle() {
trucks.add("YT-485-FD");
trucks.add("BH-009-AZ");
trucks.add("MQ-430-LK");
mockedSetUpBundleResponse.setTruck(trucks);
mockedSetUpBundleResponse.setTrucks(trucks);

Set<String> deliverymen= new HashSet<>();
deliverymen.add("TRS");
Expand Down

0 comments on commit 8fbd660

Please sign in to comment.