Skip to content

Commit

Permalink
fix: Improved mock catalog product names and descriptions (#543)
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson authored May 10, 2024
1 parent 7b1f353 commit c35f1a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public MockCatalogService() {
products = new HashMap<>();

for(int i = 1; i < 21; i++) {
products.put(""+i, new Product(""+i, "product"+i, "product description "+i, 1, "/assets/img/sample_product.jpg", 123, new ArrayList<>()));
products.put(""+i, new Product(""+i, "Sample Product "+i, "This is a sample product description", 1, "/assets/img/sample_product.jpg", 123, new ArrayList<>()));
}
}

Expand Down

0 comments on commit c35f1a5

Please sign in to comment.