Skip to content

Commit

Permalink
[2024] Remove bad test cases from day 20
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Dec 21, 2024
1 parent 91fe2c4 commit 5ba60e7
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions aoc_2024/src/day_20.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,36 +86,3 @@ impl Problem {
costs
}
}

#[cfg(test)]
mod test {
use indoc::indoc;

const CASE: &str = indoc! {"
###############
#...#...#.....#
#.#.#.#.#.###.#
#S#...#.#.#...#
#######.#.#.###
#######.#.#...#
#######.#.###.#
###..E#...#...#
###.#######.###
#...###...#...#
#.#####.#.###.#
#.#...#.#.#...#
#.#.#.#.#.#.###
#...#...#...###
###############
"};

#[test]
fn part_a() {
assert_eq!(super::part_a(CASE), 44.into());
}

#[test]
fn part_b() {
assert_eq!(super::part_b(CASE), ().into());
}
}

0 comments on commit 5ba60e7

Please sign in to comment.