From eb112cf7b4432dc0b66332a8e5f8570239c3235a Mon Sep 17 00:00:00 2001 From: Daniel Lin Date: Fri, 13 Dec 2024 08:36:28 -0500 Subject: [PATCH] Uncomment tests --- .../kotlin/com/github/ephemient/aoc2024/Day12Test.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kt/aoc2024-lib/src/commonTest/kotlin/com/github/ephemient/aoc2024/Day12Test.kt b/kt/aoc2024-lib/src/commonTest/kotlin/com/github/ephemient/aoc2024/Day12Test.kt index 6af2c14..1b20cc2 100644 --- a/kt/aoc2024-lib/src/commonTest/kotlin/com/github/ephemient/aoc2024/Day12Test.kt +++ b/kt/aoc2024-lib/src/commonTest/kotlin/com/github/ephemient/aoc2024/Day12Test.kt @@ -13,9 +13,9 @@ class Day12Test { @Test fun part2() { -// assertEquals(80, Day12(example1).part2()) -// assertEquals(436, Day12(example2).part2()) -// assertEquals(236, Day12(example4).part2()) + assertEquals(80, Day12(example1).part2()) + assertEquals(436, Day12(example2).part2()) + assertEquals(236, Day12(example4).part2()) assertEquals(368, Day12(example5).part2()) assertEquals(1206, Day12(example3).part2()) }