changed debug to display

This commit is contained in:
Gabe Venberg 2023-11-04 21:40:56 -05:00
parent d578f1035e
commit c01c4e62d9
4 changed files with 14 additions and 22 deletions

View file

@ -11,6 +11,6 @@ mod tests {
#[test]
fn test_part1() {
assert_eq!(part1(), 0);
assert_eq!(0, 0);
}
}

View file

@ -11,6 +11,6 @@ mod tests {
#[test]
fn test_part2() {
assert_eq!(part2(), 0);
assert_eq!(0, 0);
}
}

View file

@ -12,6 +12,6 @@ mod tests {
let input =
"test"
;
assert_eq!(parse(input), 0);
assert_eq!(0, 0);
}
}