From 00000280c519c71f4536cacc3806ec51de86eea4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Thu, 18 Dec 2025 09:35:05 +0100 Subject: [PATCH] chore: remove unimplemented tests 2025/12 --- src/solution/year_2025/day_12.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/solution/year_2025/day_12.py b/src/solution/year_2025/day_12.py index 4cd5a0e..7259d8f 100644 --- a/src/solution/year_2025/day_12.py +++ b/src/solution/year_2025/day_12.py @@ -55,11 +55,3 @@ def part_1(input_data: str) -> Any: def part_2(_: str) -> Any: return "Marry Christmas!" - - -def test_part_1(example_data): - assert part_1(example_data) == 0 - - -def test_part_2(example_data): - assert part_2(example_data) == 0