From 6da1f6daeea8383de0f363fcb007cc9df15afd45 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Thu, 7 Mar 2024 08:46:22 +1100 Subject: Backend: Reformat code in all files in src directory (#1109) --- .../hannibal2/skyhanni/test/garden/VisitorToolTipParserTest.kt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/test/java/at') 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"] -- cgit