From 567b18f3a7d9c4aa2e51891f219439b433f0ed30 Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Sun, 5 Dec 2021 11:38:16 -0500 Subject: [PATCH] Correcting template --- puzzles/TEMPLATE_test_dayXX.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puzzles/TEMPLATE_test_dayXX.py b/puzzles/TEMPLATE_test_dayXX.py index 4a0433f..91172a3 100644 --- a/puzzles/TEMPLATE_test_dayXX.py +++ b/puzzles/TEMPLATE_test_dayXX.py @@ -10,7 +10,7 @@ import dayXX as aoc INPUTS_DIR = f"{pathlib.Path(__file__).parent.parent}/inputs" @pytest.fixture -def example_data1(): +def example_data(): input_path = f"{INPUTS_DIR}/dayXX-example.txt" return aoc.parse(pathlib.Path(input_path).read_text().strip())