1
Fork 0

Remove the test case.

This commit is contained in:
Bauke 2021-12-09 13:18:41 +01:00
parent 172c89a6eb
commit ad0f5d63a1
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 0 additions and 8 deletions

View File

@ -148,11 +148,3 @@ fn part_2(input: &str) -> Result<usize> {
.product(),
)
}
#[test]
fn test_sample() -> Result<()> {
let sample = "2199943210\n3987894921\n9856789892\n8767896789\n9899965678";
assert_eq!(part_1(sample)?, 15);
assert_eq!(part_2(sample)?, 1134);
Ok(())
}