Reverting to original

This commit is contained in:
villanibe 2025-06-30 02:07:10 +02:00
parent b2a06a1b9d
commit 72ef6ac039

View File

@ -15,12 +15,12 @@ public class TexttestFixture {
new Item("Backstage passes to a TAFKAL80ETC concert", 15, 20), new Item("Backstage passes to a TAFKAL80ETC concert", 15, 20),
new Item("Backstage passes to a TAFKAL80ETC concert", 10, 49), new Item("Backstage passes to a TAFKAL80ETC concert", 10, 49),
new Item("Backstage passes to a TAFKAL80ETC concert", 5, 49), new Item("Backstage passes to a TAFKAL80ETC concert", 5, 49),
new Item("Conjured Mana Cake", 3, 6) // this conjured item does not work properly yet
}; new Item("Conjured Mana Cake", 3, 6) };
GildedRose app = new GildedRose(items); GildedRose app = new GildedRose(items);
int days = 32; int days = 2;
if (args.length > 0) { if (args.length > 0) {
days = Integer.parseInt(args[0]) + 1; days = Integer.parseInt(args[0]) + 1;
} }