From 83ac36c5eed5b48306071bd2faa1b54c48885b3b Mon Sep 17 00:00:00 2001 From: Daniel Lin Date: Wed, 21 Dec 2022 16:10:31 -0500 Subject: [PATCH] Increase test timeout to account for CI performance --- .../commonTest/kotlin/com/github/ephemient/aoc2022/Day19Test.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kt/src/commonTest/kotlin/com/github/ephemient/aoc2022/Day19Test.kt b/kt/src/commonTest/kotlin/com/github/ephemient/aoc2022/Day19Test.kt index d643323..f9bac28 100644 --- a/kt/src/commonTest/kotlin/com/github/ephemient/aoc2022/Day19Test.kt +++ b/kt/src/commonTest/kotlin/com/github/ephemient/aoc2022/Day19Test.kt @@ -13,7 +13,7 @@ class Day19Test { } @Test - fun part2() = runTest(dispatchTimeoutMs = 120_000L) { + fun part2() = runTest(dispatchTimeoutMs = 180_000L) { assertEquals(3472, Day19(getTestInput(19)).part2()) } }