From 30670f33fb51a2dbb7837bdaaec1f4dea815fe29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sp=C3=B6ttel?= <1682504+fspoettel@users.noreply.github.com> Date: Mon, 24 Oct 2022 13:05:44 +0200 Subject: [PATCH] fix: add missing line breaks to scaffold template --- src/bin/scaffold.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/scaffold.rs b/src/bin/scaffold.rs index 3375f56..e77d39d 100644 --- a/src/bin/scaffold.rs +++ b/src/bin/scaffold.rs @@ -19,12 +19,14 @@ fn main() { #[cfg(test)] mod tests { use super::*; + #[test] fn test_part_one() { use aoc::read_file; let input = read_file("examples", DAY); assert_eq!(part_one(&input), 0); } + #[test] fn test_part_two() { use aoc::read_file;