aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/at
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/at')
-rw-r--r--src/test/java/at/hannibal2/skyhanni/test/garden/VisitorToolTipParserTest.kt9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorToolTipParserTest.kt b/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorToolTipParserTest.kt
index cdb171aa6..3a4a08c47 100644
--- a/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorToolTipParserTest.kt
+++ b/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorToolTipParserTest.kt
@@ -22,7 +22,8 @@ class VisitorToolTipParserTest {
@Test
fun testParseItemsNeeded() {
- val parsedData = VisitorTooltipParser.parse(lore,
+ val parsedData = VisitorTooltipParser.parse(
+ lore,
GardenConfig()
)
assert(parsedData.itemsNeeded.isNotEmpty()) {
@@ -35,7 +36,8 @@ class VisitorToolTipParserTest {
@Test
fun testParseRewards() {
- val parsedData = VisitorTooltipParser.parse(lore,
+ val parsedData = VisitorTooltipParser.parse(
+ lore,
GardenConfig()
)
assert(parsedData.rewards.isNotEmpty()) {
@@ -60,7 +62,8 @@ class VisitorToolTipParserTest {
@Test
fun testParseCopper() {
- val parsedData = VisitorTooltipParser.parse(lore,
+ val parsedData = VisitorTooltipParser.parse(
+ lore,
GardenConfig()
)
val copper = parsedData.rewards["Copper"]