fix: add missing line breaks to scaffold template
This commit is contained in:
@@ -19,12 +19,14 @@ fn main() {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_part_one() {
|
fn test_part_one() {
|
||||||
use aoc::read_file;
|
use aoc::read_file;
|
||||||
let input = read_file("examples", DAY);
|
let input = read_file("examples", DAY);
|
||||||
assert_eq!(part_one(&input), 0);
|
assert_eq!(part_one(&input), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_part_two() {
|
fn test_part_two() {
|
||||||
use aoc::read_file;
|
use aoc::read_file;
|
||||||
|
|||||||
Reference in New Issue
Block a user