Skip to content

Commit

Permalink
Merge pull request #193 from billyhoce/final-bug-fix
Browse files Browse the repository at this point in the history
Fix item with numbers bug
  • Loading branch information
billyhoce authored Apr 15, 2024
2 parents 89d36b2 + 2f6e812 commit f07426f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public static Person[] getSamplePersons() {
new Phone("93210283"),
new Email("charlotte@example.com"),
new Address("Blk 11 Ang Mo Kio Street 74, #11-04"),
new MembershipPoints("1000"),
getAllergenSet("EG"), new Points("1000"),
getOrderArrayList("Chocolate Chip Cookies 300g|1000|1|2024-01-01T07:00:00")),
new MembershipPoints("300"),
getAllergenSet("EG"), new Points("300"),
getOrderArrayList("Chocolate Chip Cookies|300|1|2024-01-01T07:00:00")),
new Person(
new Name("David Li"),
new Phone("91031282"),
Expand Down Expand Up @@ -85,8 +85,7 @@ public static Item[] getSampleCatalogue() {
new Item("Blueberry Muffin", 200),
new Item("Strawberry Muffin", 200),
new Item("Chocolate Muffin", 100),
new Item("Chocolate Chip Cookies 100g", 300),
new Item("Chocolate Chip Cookies 300g", 1000),
new Item("Chocolate Chip Cookies", 300),
new Item("Plain Waffle", 150),
new Item("Chocolate Waffle", 250),
new Item("Kaya Waffle", 200),
Expand Down

0 comments on commit f07426f

Please sign in to comment.